fix some test usings broken in the cleanup yesterday.
parent
9610a49881
commit
d38fe7a92c
extra
sequences
rotated
shifted
snipped
zipped
sorting
splitting/extras
|
@ -1,6 +1,6 @@
|
|||
! Copyright (C) 2012 John Benediktsson
|
||||
! See http://factorcode.org/license.txt for BSD license
|
||||
USING: strings tools.test ;
|
||||
USING: sequences.rotated strings tools.test ;
|
||||
|
||||
{ "fasd" } [ "asdf" -1 <rotated> >string ] unit-test
|
||||
{ "sdfa" } [ "asdf" 1 <rotated> >string ] unit-test
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
! Copyright (C) 2013 John Benediktsson
|
||||
! See http://factorcode.org/license.txt for BSD license
|
||||
USING: arrays sequences tools.test ;
|
||||
USING: arrays sequences sequences.shifted tools.test ;
|
||||
|
||||
{ { 1 2 3 7 } } [ 4 <iota> -1 7 <shifted> >array ] unit-test
|
||||
{ { 7 0 1 2 } } [ 4 <iota> 1 7 <shifted> >array ] unit-test
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
! Copyright (C) 2013 John Benediktsson
|
||||
! See http://factorcode.org/license.txt for BSD license
|
||||
USING: arrays sequences tools.test ;
|
||||
USING: arrays sequences sequences.snipped tools.test ;
|
||||
|
||||
{ { 0 1 2 5 6 } } [ 3 5 7 <iota> <snipped> >array ] unit-test
|
||||
{ { 0 1 2 } } [ 3 10 7 <iota> <snipped> >array ] unit-test
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
! Copyright (C) 2012 John Benediktsson
|
||||
! See http://factorcode.org/license.txt for BSD license
|
||||
USING: arrays tools.test ;
|
||||
USING: arrays sequences.zipped tools.test ;
|
||||
|
||||
{ { { 1 4 } { 2 5 } { 3 6 } } }
|
||||
[ { 1 2 3 } { 4 5 6 } <zipped> >array ] unit-test
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
USING: kernel tools.test ;
|
||||
USING: kernel sorting.bubble tools.test ;
|
||||
|
||||
{ { } } [ { } dup natural-bubble-sort! ] unit-test
|
||||
{ { 1 } } [ { 1 } dup natural-bubble-sort! ] unit-test
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
USING: kernel sequences tools.test ;
|
||||
USING: kernel sequences sorting.heap tools.test ;
|
||||
|
||||
{ { } } [ { } heapsort ] unit-test
|
||||
{ { 1 } } [ { 1 } heapsort ] unit-test
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
USING: kernel sequences tools.test ;
|
||||
USING: kernel sequences sorting.quick tools.test ;
|
||||
|
||||
{ { } } [ { } dup natural-sort! ] unit-test
|
||||
{ { 1 } } [ { 1 } dup natural-sort! ] unit-test
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
USING: ascii kernel math sequences strings tools.test ;
|
||||
USING: ascii kernel math sequences splitting.extras strings
|
||||
tools.test ;
|
||||
|
||||
{ { } } [ { } { 0 } split* ] unit-test
|
||||
{ { { 1 2 3 } } } [ { 1 2 3 } { 0 } split* ] unit-test
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
USING: kernel tools.test ;
|
||||
USING: kernel tools.test uu ;
|
||||
IN: uu.tests
|
||||
|
||||
CONSTANT: plain
|
||||
|
|
Loading…
Reference in New Issue