]> gitweb.factorcode.org Git - factor.git/commitdiff
unicode: get the tests to run again.
authorJohn Benediktsson <mrjbq7@gmail.com>
Thu, 31 Mar 2016 13:04:37 +0000 (06:04 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 31 Mar 2016 13:04:37 +0000 (06:04 -0700)
basis/unicode/breaks/breaks-tests.factor
basis/unicode/case/case-tests.factor
basis/unicode/collation/collation-tests.factor
basis/unicode/normalize/normalize-tests.factor
basis/unicode/script/script-tests.factor

index 6de334cc5b2afd6511b6a0be66eac7a038033af7..11bc5eac66a92025183a4590031614fbc6dd3707 100644 (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
index 60cf5558c000d2170d66d0a791d872e94b70232e..90f6eeae85a2e95c4e9791cb3b8a1219bd266647 100644 (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
index 1ec0126d3cf388fbd893c75019dc08208d5228e2..9d7d5cd8bf58034e7fd79343d5896dcf783e8015 100644 (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
index 77eb7f3edf1135387a9a4335f32302ac8394f3ee..2b676a28c79541e79b8eb936e3fa2deb9ca88f7c 100644 (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
index de57fa2b0eb0d5775cb223a2c9f0a4c1399efa94..3963e3d42e89c7fd372da9c6041229fcbf448d35 100644 (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