summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_deduplicate.py
blob: 6249d36fb8f3c3a58f97aca072a86143c6946f71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import WebIDL

def WebIDLTest(parser, harness):
    parser.parse("""
        interface Foo;
        interface Bar;
        interface Foo;
        """);

    results = parser.finish()

    # There should be no duplicate interfaces in the result.
    expectedNames = sorted(['Foo', 'Bar'])
    actualNames = sorted(map(lambda iface: iface.identifier.name, results))
    harness.check(actualNames, expectedNames, "Parser shouldn't output duplicate names.")