1 # Copyright (C) 2009, Jonathan "Duke" Leto <jonathan@leto.net>
3 .namespace [ 'Tapir'; 'Stream' ]
5 # This is so you can run parrot on this file as a syntax check
11 setattribute self, "pass", pass
16 setattribute self, "fail", fail
21 setattribute self, "todo", todo
26 setattribute self, "skip", skip
31 setattribute self, "plan", plan
36 pass = getattribute self, "pass"
42 fail = getattribute self, "fail"
48 todo = getattribute self, "todo"
54 skip = getattribute self, "skip"
60 plan = getattribute self, "plan"
65 .local pmc skip, pass, fail, todo
66 skip = getattribute self, "skip"
67 pass = getattribute self, "pass"
68 fail = getattribute self, "fail"
69 todo = getattribute self, "todo"
81 # vim: expandtab shiftwidth=4 ft=pir: