]> gitweb.factorcode.org Git - factor-unmaintained.git/blob - peg-lexer/peg-lexer-tests.factor
images.processing.rotation: moving to extra/
[factor-unmaintained.git] / peg-lexer / peg-lexer-tests.factor
1 USING: tools.test peg-lexer.test-parsers ;
2 IN: peg-lexer.tests
3
4 { V{ "1234" "-end" } } [
5    test1 1234-end
6 ] unit-test
7
8 { V{ 1234 53 } } [
9    test2 12345
10 ] unit-test
11
12 { V{ "heavy" "duty" "testing" } } [
13    test3 heavy duty testing
14 ] unit-test