summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_empty_enum.py
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/parser/tests/test_empty_enum.py')
-rw-r--r--dom/bindings/parser/tests/test_empty_enum.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/bindings/parser/tests/test_empty_enum.py b/dom/bindings/parser/tests/test_empty_enum.py
new file mode 100644
index 0000000000..cd6b985dc9
--- /dev/null
+++ b/dom/bindings/parser/tests/test_empty_enum.py
@@ -0,0 +1,14 @@
+def WebIDLTest(parser, harness):
+ try:
+ parser.parse(
+ """
+ enum TestEmptyEnum {
+ };
+ """
+ )
+
+ harness.ok(False, "Should have thrown!")
+ except Exception:
+ harness.ok(True, "Parsing TestEmptyEnum enum should fail")
+
+ parser.finish()