summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc-gui/duplicate-macro-reexport.goml
blob: 7d01c88f31ba51a59cab47dd815977674a229836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// This test ensures that there is no macro duplicates in the sidebar.
go-to: "file://" + |DOC_PATH| + "/test_docs/macro.a.html"
// Waiting for the elements in the sidebar to be rendered.
wait-for: ".sidebar-elems .macro"
// Check there is only one macro named "a" listed in the sidebar.
assert-count: (
    "//*[@class='sidebar-elems']//*[@class='block macro']//li/a[text()='a']",
    1,
)
// Check there is only one macro named "b" listed in the sidebar.
assert-count: (
    "//*[@class='sidebar-elems']//*[@class='block macro']//li/a[text()='b']",
    1,
)