11 lines
305 B
Factor
11 lines
305 B
Factor
! Unit tests for vocabs vocabulary
|
|
USING: vocabs tools.test ;
|
|
IN: vocabs.tests
|
|
|
|
[ f ] [ "kernel" vocab-main ] unit-test
|
|
|
|
[ t ] [ "" "" child-vocab? ] unit-test
|
|
[ t ] [ "" "io.files" child-vocab? ] unit-test
|
|
[ t ] [ "io" "io.files" child-vocab? ] unit-test
|
|
[ f ] [ "io.files" "io" child-vocab? ] unit-test
|