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