Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add regression test for items list size (#128023) #128059

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions tests/rustdoc-gui/item-name-wrap.goml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// This test ensures that the item name's width is not wrapped.
go-to: "file://" + |DOC_PATH| + "/test_docs/short_docs/index.html"
set-window-size: (1000, 600)

// First we ensure that there is only one `item-table`...
assert-count: ("ul.item-table", 1)
// And only two items in it.
assert-count: ("ul.item-table li", 2)

// If they don't have the same height, then it means one of the two is on two lines whereas it
// shouldn't!
compare-elements-size: (
".item-table .item-name a[href='fn.mult_vec_num.html']",
".item-table .item-name a[href='fn.subt_vec_num.html']",
["height"],
)

// We also check that the `item-table` is taking the full width.
compare-elements-size: (
"#functions",
"ul.item-table",
["width"],
)
8 changes: 8 additions & 0 deletions tests/rustdoc-gui/src/test_docs/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -620,3 +620,11 @@ pub mod trait_bounds {
pub trait TwoBounds: Sized + Copy {}
pub trait ThreeBounds: Sized + Copy + Eq {}
}

pub mod short_docs {
/// mult_vec_num(x: &[f64], y: f64)
pub fn mult_vec_num() {}

/// subt_vec_num(x: &[f64], y: f64)
pub fn subt_vec_num() {}
}
Loading