tenfourfox/dom/bindings/parser/tests/test_sanity.py

8 lines
252 B
Python
Raw Normal View History

2017-04-19 07:56:45 +00:00
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.")