Per discussion in #84326. For trait implementations, this was misleading: the items actually do have documentation (but it comes from the trait definition). For both trait implementations and trait implementors, this was redundant: in both of those cases, the items are default-hidden by different toggle at the level above. Update tests: Remove XPath selectors that over-specified on details tag, in cases that weren't testing toggles. Add an explicit test for toggles on methods. Rename item-hide-threshold to toggle-item-contents for consistency.
18 lines
658 B
Rust
18 lines
658 B
Rust
#![crate_name = "foo"]
|
|
|
|
// Struct methods with documentation should be wrapped in a <details> toggle with an appropriate
|
|
// summary. Struct methods with no documentation should not be wrapped.
|
|
//
|
|
// @has foo/struct.Foo.html
|
|
// @has - '//details[@class="rustdoc-toggle method-toggle"]//summary//code' 'is_documented()'
|
|
// @has - '//details[@class="rustdoc-toggle method-toggle"]//*[@class="docblock"]' 'is_documented is documented'
|
|
// @!has - '//details[@class="rustdoc-toggle method-toggle"]//summary//code' 'not_documented()'
|
|
pub struct Foo {
|
|
}
|
|
|
|
impl Foo {
|
|
pub fn not_documented() {}
|
|
|
|
/// is_documented is documented
|
|
pub fn is_documented() {}
|
|
}
|