2011-10-29 18:26:52 -04:00
|
|
|
USING: help.html help.vocabs tools.test help.topics kernel sequences vocabs
|
|
|
|
math ;
|
2008-09-29 05:10:20 -04:00
|
|
|
|
2020-05-22 17:41:00 -04:00
|
|
|
{ } [ [ "xml" >link help>html drop ] with-test-directory ] unit-test
|
2009-05-16 17:54:02 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "article-foobar.html" }
|
|
|
|
[ "foobar" >link topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "article-foo,bar.html" }
|
|
|
|
[ { "foo" "bar" } >link topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "word-+,math.html" } [ \ + topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "word-+,math.html" } [ \ + >link topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "vocab-doesnotexist.html" }
|
|
|
|
[ "doesnotexist" >vocab-link topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "vocab-kernel.html" }
|
|
|
|
[ "kernel" lookup-vocab topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "tag-io.html" } [ "io" <vocab-tag> topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "author-Steve Jobs.html" }
|
|
|
|
[ "Steve Jobs" <vocab-author> topic>filename ] unit-test
|
2011-10-29 18:26:52 -04:00
|
|
|
|
2020-05-22 19:01:25 -04:00
|
|
|
{ "word-f,syntax.html" } [ f topic>filename ] unit-test
|
2009-09-15 17:48:56 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ t } [ all-vocabs-really [ vocab-spec? ] all? ] unit-test
|
2009-09-15 17:48:56 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ t } [ all-vocabs-really [ vocab-name "sequences.private" = ] any? ] unit-test
|
2009-09-15 17:48:56 -04:00
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [ all-vocabs-really [ vocab-name "scratchpad" = ] any? ] unit-test
|