]> gitweb.factorcode.org Git - factor.git/commitdiff
Fix the existing IN: suffixes for the test vocabs
authorAlexander Iljin <ajsoft@yandex.ru>
Wed, 24 Jan 2018 13:30:21 +0000 (14:30 +0100)
committerJohn Benediktsson <mrjbq7@gmail.com>
Thu, 25 Jan 2018 00:03:48 +0000 (16:03 -0800)
Change some existing vocab name suffixes from "-tests" or ".test" to
".tests". Add no new suffixes.

basis/concurrency/count-downs/count-downs-tests.factor
basis/interval-maps/interval-maps-tests.factor
basis/inverse/inverse-tests.factor
basis/io/encodings/strict/strict-tests.factor
basis/linked-assocs/linked-assocs-tests.factor
basis/locals/types/types-tests.factor
basis/regexp/regexp-tests.factor
extra/calendar/elapsed/elapsed-tests.factor
extra/jamshred/oint/oint-tests.factor
extra/math/extras/extras-tests.factor

index d03245bd25ef44ea988fb4b7713632e714311eee..a39d68448a6051ce644d2bb027a474619724c82b 100644 (file)
@@ -1,5 +1,5 @@
 USING: concurrency.count-downs threads kernel tools.test ;
-IN: concurrency.count-downs.tests`
+IN: concurrency.count-downs.tests
 
 { } [ 0 <count-down> await ] unit-test
 
index 5438bd030b7c6c2c64fb8a52d47bc54256bde512..70ad326372b8f246ecc55e788ea261520367f482 100644 (file)
@@ -1,5 +1,5 @@
 USING: kernel namespaces interval-maps tools.test ;
-IN: interval-maps.test
+IN: interval-maps.tests
 
 SYMBOL: test
 
index 824dc3b0ece32b9b8b67e949c3be7b393afa2bb3..18f4ad32b41bec4a2753217faeae9b35a15596be 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: inverse tools.test arrays math kernel sequences
 math.functions math.constants continuations combinators.smart ;
-IN: inverse-tests
+IN: inverse.tests
 
 { 2 } [ { 3 2 } [ 3 swap 2array ] undo ] unit-test
 [ { 3 4 } [ dup 2array ] undo ] must-fail
index e8ffe435fb544206a0efbe65174ecd0064701719..ba6d93aa26f90d51ad14ee44caa46ab317bef599 100644 (file)
@@ -1,6 +1,6 @@
 USING: io.encodings.strict io.encodings.ascii tools.test
 arrays io.encodings.string ;
-IN: io.encodings.strict.test
+IN: io.encodings.strict.tests
 
 { { 0xfffd } } [ { 128 } ascii decode >array ] unit-test
 [ { 128 } ascii strict decode ] must-fail
index e4b291ce238842ac56be1c800f7dd87a4ef85505..feba3fc9e732b90dcde9ed19403e32838eba06a6 100644 (file)
@@ -2,7 +2,7 @@
 ! See http://factorcode.org/license.txt for BSD license.
 USING: accessors assocs kernel linked-assocs math sequences
 tools.test ;
-IN: linked-assocs.test
+IN: linked-assocs.tests
 
 { { 1 2 3 } } [
     <linked-hash> 1 "b" pick set-at
index 91db776b4b517de35c410e763914eda54be88871..c00a417ff4c5633ac1e2c175add7ea8441c48ce8 100644 (file)
@@ -1,5 +1,5 @@
 USING: accessors compiler.units kernel locals.types tools.test words ;
-IN: locals.types.test
+IN: locals.types.tests
 
 { t } [
     [ "hello" <local> ] with-compilation-unit "local?" word-prop
index d03e37b7a6b1801e1b7177a8ffaa8d7bb908543c..30ec30a6d98df7034d5bf1213df834490c9ad115 100644 (file)
@@ -1,6 +1,6 @@
 USING: arrays regexp tools.test kernel sequences regexp.parser
 regexp.private eval strings multiline accessors ;
-IN: regexp-tests
+IN: regexp.tests
 
 { f } [ "b" "a*" <regexp> matches? ] unit-test
 { t } [ "" "a*" <regexp> matches? ] unit-test
index 881c61451db8eb25440d1d0f2b46561e5d5c54e7..4373f4f207227492aea4416e41d22298021484dc 100644 (file)
@@ -3,7 +3,7 @@
 
 USING: calendar calendar.elapsed kernel tools.test ;
 
-IN: calendar.elapsed.test
+IN: calendar.elapsed.tests
 
 [ -1 elapsed-time ] [ "negative seconds" = ] must-fail-with
 
index dadd6fb255cb8c78d859634bc2d6c2f7f8a1e0ec..3b52e4b1b69ecb2ff9eb1dd8c43d5287f459eaee 100644 (file)
@@ -1,5 +1,5 @@
 USING: jamshred.oint tools.test ;
-IN: jamshred.oint-tests
+IN: jamshred.oint.tests
 
 { { 0 -1 -1 } } [ { 0 1 -1 } { 0 -1 0 } reflect ] unit-test
 { { 0 1 0 } } [ { 1 1 0 } { 1 0 0 } proj-perp ] unit-test
index 118ea884a443fe2586b279727c2bd7b926187625..4b4fb91e3e8873da72196dbd2284110cfd87d69e 100644 (file)
@@ -4,7 +4,7 @@
 USING: arrays kernel math math.extras math.ranges sequences
 tools.test ;
 
-IN: math.extras.test
+IN: math.extras.tests
 
 { { 1 -1/2 1/6 0 -1/30 0 1/42 0 -1/30 0 } }
 [ 10 <iota> [ bernoulli ] map ] unit-test