factor/basis/tools/test/test-tests.factor

16 lines
333 B
Factor
Raw Normal View History

IN: tools.test.tests
2009-04-19 19:21:25 -04:00
USING: tools.test tools.test.private namespaces kernel sequences ;
2009-04-19 19:21:25 -04:00
: fake-unit-test ( quot -- )
[
"fake" file set
V{ } clone test-failures set
call
test-failures get
] with-scope ; inline
[ 1 ] [
[
[ "OOPS" ] must-fail
] fake-unit-test length
] unit-test