unicode: get the tests to run again.

locals-and-roots
John Benediktsson 2016-03-31 06:04:37 -07:00
parent d2daa05790
commit cb3bbc8a40
5 changed files with 5 additions and 6 deletions

View File

@ -1,4 +1,4 @@
USING: tools.test unicode.breaks sequences math kernel splitting
USING: tools.test unicode sequences math kernel splitting
unicode.categories io.pathnames io.encodings.utf8 io.files
strings quotations math.parser locals ;
IN: unicode.breaks.tests

View File

@ -1,8 +1,7 @@
! Copyright (C) 2008, 2009 Daniel Ehrenberg.
! See http://factorcode.org/license.txt for BSD license.
USING: unicode.case tools.test namespaces strings unicode.normalize
USING: unicode tools.test namespaces strings unicode.case
unicode.case.private ;
IN: unicode.case.tests
{ "Hello How Are You? I'm Good" } [ "hEllo how ARE yOU? I'm good" >title ] unit-test
{ "FUSS" } [ "Fu\u0000DF" >upper ] unit-test

View File

@ -1,4 +1,4 @@
USING: io io.files splitting grouping unicode.collation
USING: io io.files splitting grouping unicode
sequences kernel io.encodings.utf8 math.parser math.order
tools.test assocs words ;
IN: unicode.collation.tests

View File

@ -1,4 +1,4 @@
USING: unicode.normalize kernel tools.test sequences
USING: unicode kernel tools.test sequences
simple-flat-file io.encodings.utf8 io.files splitting math.parser
locals math quotations assocs combinators unicode.normalize.private ;
IN: unicode.normalize.tests

View File

@ -1,4 +1,4 @@
USING: unicode.script tools.test ;
USING: unicode tools.test ;
{ "Latin" } [ CHAR: a script-of ] unit-test
{ "Common" } [ 0 script-of ] unit-test