Files
servo/components/script/dom/bindings/codegen/parser/tests/test_sanity.py
Jack Moffitt c6ab60dbfc Cargoify servo
2014-09-08 20:21:42 -06:00

8 lines
252 B
Python

def WebIDLTest(parser, harness):
parser.parse("")
parser.finish()
harness.ok(True, "Parsing nothing doesn't throw.")
parser.parse("interface Foo {};")
parser.finish()
harness.ok(True, "Parsing a silly interface doesn't throw.")