factor/extra/float-vectors/float-vectors-tests.factor

15 lines
304 B
Factor
Raw Normal View History

2008-03-01 17:00:45 -05:00
IN: float-vectors.tests
2008-01-29 16:04:26 -05:00
USING: tools.test float-vectors vectors sequences kernel ;
[ 0 ] [ 123 <float-vector> length ] unit-test
: do-it
12345 [ over push ] each ;
[ t ] [
3 <float-vector> do-it
3 <vector> do-it sequence=
] unit-test
2008-01-30 02:10:58 -05:00
[ t ] [ FV{ } float-vector? ] unit-test