X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=tests%2Ftestcase.g;h=35a36f171b029dc329e92a240243729beb32343a;hp=0d0dd296991a0cc1bc694f520033b98993c3495e;hb=8ed318cb9c9f27861adf519522cbe9d95f094dab;hpb=f5f20224ef2595f60d430d97ecf43f7348c49440 diff --git a/tests/testcase.g b/tests/testcase.g index 0d0dd29..35a36f1 100644 --- a/tests/testcase.g +++ b/tests/testcase.g @@ -1,6 +1,12 @@ -ts ::= ws test*/ws ws => ts -ws !::= w* -test ::= ^"testcase" "{" input output+/ws Grammar "}" /ws - | ^"testcase" "{" input Grammar "}" /ws -output ::= "output" quoted ";" / ws -input ::= "input" quoted ";" / ws +#import meta.g as grammar + +s = ws! (TestCases:: TestCase */ ws) ws! +Input = "input" grammar.Quoted ";" /ws +Output = "output" grammar.Quoted ";" /ws +Outputs:: = Output */ ws +TestCase:: = "testcase" grammar.Quoted "{" + Input + Outputs + (SubGrammar:: grammar.Grammar) + "}" /ws +ws = grammar.ws