Skip to content

Commit f6efa33

Browse files
Add GUI test for auto-hide-trait-implementations setting
1 parent a6470c7 commit f6efa33

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Checks that the setting "auto hide trait implementations" is working as expected.
2+
goto: file://|DOC_PATH|/test_docs/struct.Foo.html
3+
4+
// By default, the trait implementations are not collapsed.
5+
assert-attribute: ("#trait-implementations-list > details", {"open": ""}, ALL)
6+
7+
// We now set the setting to auto hide all trait implementations.
8+
local-storage: {"rustdoc-auto-hide-trait-implementations": "true" }
9+
// We reload to ensure the trait implementations are collapsed as expected.
10+
reload:
11+
12+
// We now check that all matching elements don't have the open attributes.
13+
assert-attribute-false: ("#trait-implementations-list > details", {"open": ""}, ALL)

src/test/rustdoc-gui/src/test_docs/lib.rs

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![feature(doc_keyword)]
66
#![feature(doc_cfg)]
77

8+
use std::convert::AsRef;
89
use std::fmt;
910

1011
/// Basic function with some code examples:
@@ -36,6 +37,12 @@ impl Foo {
3637
}
3738
}
3839

40+
impl AsRef<str> for Foo {
41+
fn as_ref(&self) -> &str {
42+
"hello"
43+
}
44+
}
45+
3946
/// Just a normal enum.
4047
#[doc(alias = "ThisIsAnAlias")]
4148
pub enum WhoLetTheDogOut {

0 commit comments

Comments
 (0)