]> gitweb.factorcode.org Git - factor.git/blob - extra/help/syntax/syntax-tests.factor
Merge branch 'master' of git://factorcode.org/git/factor
[factor.git] / extra / help / syntax / syntax-tests.factor
1 IN: help.syntax.tests
2 USING: tools.test parser vocabs help.syntax namespaces ;
3
4 [
5     [ "foobar" ] [
6         "IN: help.syntax.tests USE: help.syntax ABOUT: \"foobar\"" eval
7         "help.syntax.tests" vocab vocab-help
8     ] unit-test
9     
10     [ { "foobar" } ] [
11         "IN: help.syntax.tests USE: help.syntax ABOUT: { \"foobar\" }" eval
12         "help.syntax.tests" vocab vocab-help
13     ] unit-test
14     
15     [ ] [ f "help.syntax.tests" vocab set-vocab-help ] unit-test
16 ] with-file-vocabs