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

rustdoc: Add regression test for #60522 #110760

Merged
merged 1 commit into from
Apr 24, 2023
Merged
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
39 changes: 39 additions & 0 deletions tests/rustdoc/issue-60522-duplicated-glob-reexport.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Regression test for <https://github.com/rust-lang/rust/issues/60522>.
// This test ensures that the `banana` and `peach` modules don't appear twice
// and that the visible modules are not the re-exported ones.

#![crate_name = "foo"]

// @has 'foo/index.html'
// @count - '//*[@id="main-content"]/*[@class="small-section-header"]' 1
// @has - '//*[@id="main-content"]/*[@class="small-section-header"]' 'Modules'
// @count - '//*[@id="main-content"]/*[@class="item-table"]//*[@class="mod"]' 2
// @has - '//*[@id="main-content"]//*[@class="mod"]' 'banana'
// @has - '//*[@id="main-content"]//*[@href="banana/index.html"]' 'banana'
// @has - '//*[@id="main-content"]//*[@class="mod"]' 'peach'
// @has - '//*[@id="main-content"]//*[@href="peach/index.html"]' 'peach'

pub use crate::my_crate::*;

mod my_crate {
pub mod banana {
pub struct Yellow;
}
pub mod peach {
pub struct Pink;
}
}

// @has 'foo/banana/index.html'
// @count - '//*[@id="main-content"]//*[@class="struct"]' 1
// @has - '//*[@id="main-content"]//*[@class="struct"]' 'Brown'
pub mod banana {
pub struct Brown;
}

// @has 'foo/peach/index.html'
// @count - '//*[@id="main-content"]//*[@class="struct"]' 1
// @has - '//*[@id="main-content"]//*[@class="struct"]' 'Pungent'
pub mod peach {
pub struct Pungent;
}