Skip to content

Commit d3f75eb

Browse files
committed
Add test
1 parent 3be69b1 commit d3f75eb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/librustdoc/html/render/tests.rs

+11
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,14 @@ fn test_name_sorting() {
3838
sorted.sort_by(|&l, r| compare_names(l, r));
3939
assert_eq!(names, sorted);
4040
}
41+
42+
#[test]
43+
fn test_all_types_prints_header_once() {
44+
// Regression test for #82477
45+
let all_types = AllTypes::new();
46+
47+
let mut buffer = Buffer::new();
48+
all_types.print(&mut buffer);
49+
50+
assert_eq!(1, buffer.into_inner().matches("List of all items").count());
51+
}

0 commit comments

Comments
 (0)