mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
15 lines
595 B
Plaintext
15 lines
595 B
Plaintext
|
// This test ensures that there is no macro duplicates in the sidebar.
|
||
|
goto: file://|DOC_PATH|/test_docs/macro.a.html
|
||
|
// Waiting for the elements in the sidebar to be rendered.
|
||
|
wait-for: ".sidebar-elems .others .macro"
|
||
|
// Check there is only one macro named "a" listed in the sidebar.
|
||
|
assert-count: (
|
||
|
"//*[@class='sidebar-elems']//*[@class='others']/*[@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='others']/*[@class='block macro']//li/a[text()='b']",
|
||
|
1,
|
||
|
)
|