remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / help / syntax / syntax-tests.factor
blobe7438edd4d82d32643a615c037b3e2f7c4befd7b
1 USING: kernel tools.test parser vocabs help.syntax namespaces
2 eval accessors ;
3 IN: help.syntax.tests
6     [ "foobar" ] [
7         "IN: help.syntax.tests USE: help.syntax ABOUT: \"foobar\"" eval
8         "help.syntax.tests" vocab vocab-help
9     ] unit-test
10     
11     [ { "foobar" } ] [
12         "IN: help.syntax.tests USE: help.syntax ABOUT: { \"foobar\" }" eval
13         "help.syntax.tests" vocab vocab-help
14     ] unit-test
15     
16     [ ] [ "help.syntax.tests" vocab f >>help drop ] unit-test
17 ] with-file-vocabs