factor/unmaintained/peg-lexer/peg-lexer-tests.factor

15 lines
243 B
Factor
Raw Normal View History

2009-03-11 19:36:55 -04:00
USING: tools.test peg-lexer.test-parsers ;
IN: peg-lexer.tests
{ V{ "1234" "-end" } } [
test1 1234-end
] unit-test
{ V{ 1234 53 } } [
test2 12345
] unit-test
{ V{ "heavy" "duty" "testing" } } [
test3 heavy duty testing
2017-06-01 14:46:32 -04:00
] unit-test