rust/tests/rustdoc-gui/where-whitespace.goml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2022-08-31 11:13:59 -05:00
// This test ensures that the where conditions are correctly displayed.
go-to: "file://" + |DOC_PATH| + "/lib2/trait.Whitespace.html"
2022-08-31 11:13:59 -05:00
show-text: true
// First, we check in the trait definition if the where clause is "on its own" (not on the same
// line than "pub trait Whitespace<Idx>").
2024-04-01 14:11:22 -05:00
compare-elements-position-false: (".item-decl code", "div.where", ["y"])
2022-08-31 11:13:59 -05:00
// And that the code following it isn't on the same line either.
2024-04-01 14:11:22 -05:00
compare-elements-position-false: (".item-decl .fn", "div.where", ["y"])
2022-08-31 11:13:59 -05:00
go-to: "file://" + |DOC_PATH| + "/lib2/struct.WhereWhitespace.html"
2022-08-31 11:13:59 -05:00
// We make the screen a bit wider to ensure that the trait impl is on one line.
set-window-size: (915, 915)
2022-08-31 11:13:59 -05:00
2024-04-01 14:11:22 -05:00
compare-elements-position-false: ("#method\.new .fn", "#method\.new div.where", ["y"])
2022-08-31 11:13:59 -05:00
// We ensure that both the trait name and the struct name are on the same line in
// "impl<K, T> Whitespace<&K> for WhereWhitespace<T>".
compare-elements-position: (
"#trait-implementations-list .impl h3 .trait",
"#trait-implementations-list .impl h3 .struct",
2024-04-01 14:11:22 -05:00
["y"],
2022-08-31 11:13:59 -05:00
)
// And we now check that the where condition isn't on the same line.
compare-elements-position-false: (
"#trait-implementations-list .impl h3 .trait",
"#trait-implementations-list .impl h3 div.where",
2024-04-01 14:11:22 -05:00
["y"],
2022-08-31 11:13:59 -05:00
)