summaryrefslogtreecommitdiffstats
path: root/dom/bindings/parser/tests/test_deduplicate.py
blob: 2308f6201e4626ffe729e2bcc555b1d8baca697e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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."
    )