factor/extra/help/syntax/syntax-tests.factor

22 lines
566 B
Factor
Raw Normal View History

2008-03-01 17:00:45 -05:00
IN: help.syntax.tests
2007-09-20 18:09:08 -04:00
USING: tools.test parser vocabs help.syntax namespaces ;
[
[ "foobar" ] [
2008-03-01 17:00:45 -05:00
"IN: help.syntax.tests USE: help.syntax ABOUT: \"foobar\"" eval
"help.syntax" vocab vocab-help
2007-09-20 18:09:08 -04:00
] unit-test
[ { "foobar" } ] [
2008-03-01 17:00:45 -05:00
"IN: help.syntax.tests USE: help.syntax ABOUT: { \"foobar\" }" eval
"help.syntax" vocab vocab-help
2007-09-20 18:09:08 -04:00
] unit-test
SYMBOL: xyz
[ xyz ] [
2008-03-01 17:00:45 -05:00
"IN: help.syntax.tests USE: help.syntax ABOUT: xyz" eval
"help.syntax" vocab vocab-help
2007-09-20 18:09:08 -04:00
] unit-test
2007-12-30 17:14:15 -05:00
] with-file-vocabs