Skip to content

Commit

Permalink
Remove redundant tests
Browse files Browse the repository at this point in the history
Issues in those parts will likely be caught by other parts of the test suite.
  • Loading branch information
Kyuuhachi committed Nov 23, 2023
1 parent 4f6698f commit b0f2721
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/rustdoc/issue-118180-empty-tuple-struct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,8 @@
pub enum Enum {
// @has - '//*[@id="variant.Empty"]//h3' 'Empty()'
Empty(),
// @has - '//*[@id="variant.Hidden"]//h3' 'Hidden(/* private fields */)'
Hidden(#[doc(hidden)] u8),
}

// @has issue_118180_empty_tuple_struct/struct.Empty.html
// @has - '//pre/code' 'Empty()'
pub struct Empty();

// @has issue_118180_empty_tuple_struct/struct.Hidden.html
// @has - '//pre/code' 'Hidden(/* private fields */)'
pub struct Hidden(#[doc(hidden)] pub u8);

// @has issue_118180_empty_tuple_struct/struct.Private.html
// @has - '//pre/code' 'Private(/* private fields */)'
pub struct Private(());

0 comments on commit b0f2721

Please sign in to comment.