]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-gui/implementors.goml
Rollup merge of #96581 - RalfJung:debug-size-align, r=oli-obk
[rust.git] / src / test / rustdoc-gui / implementors.goml
1 // The goal of this test is to check that the external trait implementors, generated with JS,
2 // have the same display than the "local" ones.
3 goto: file://|DOC_PATH|/implementors/trait.Whatever.html
4 assert: "#implementors-list"
5 // There are supposed to be two implementors listed.
6 assert-count: ("#implementors-list .impl", 2)
7 // Now we check that both implementors have an anchor, an ID and a similar DOM.
8 assert: ("#implementors-list .impl:nth-child(1) > a.anchor")
9 assert-attribute: ("#implementors-list .impl:nth-child(1)", {"id": "impl-Whatever"})
10 assert-attribute: ("#implementors-list .impl:nth-child(1) > a.anchor", {"href": "#impl-Whatever"})
11 assert: "#implementors-list .impl:nth-child(1) > .code-header.in-band"
12
13 assert: ("#implementors-list .impl:nth-child(2) > a.anchor")
14 assert-attribute: ("#implementors-list .impl:nth-child(2)", {"id": "impl-Whatever-1"})
15 assert-attribute: ("#implementors-list .impl:nth-child(2) > a.anchor", {"href": "#impl-Whatever-1"})
16 assert: "#implementors-list .impl:nth-child(2) > .code-header.in-band"
17
18 goto: file://|DOC_PATH|/test_docs/struct.HasEmptyTraits.html
19 compare-elements-position-near-false: ("#impl-EmptyTrait1", "#impl-EmptyTrait2", {"y": 30})
20 compare-elements-position-near: ("#impl-EmptyTrait3 h3", "#impl-EmptyTrait3 .item-info", {"y": 30})
21
22 // Now check that re-exports work correctly.
23 // There should be exactly one impl shown on both of these pages.
24 goto: file://|DOC_PATH|/lib2/trait.TraitToReexport.html
25 assert-count: ("#implementors-list .impl", 1)
26 goto: file://|DOC_PATH|/implementors/trait.TraitToReexport.html
27 assert-count: ("#implementors-list .impl", 1)