Skip to content

Commit

Permalink
Render tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lucagladiator authored and ifxfrancois committed Oct 7, 2024
1 parent 836f36c commit f8de95c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/librustdoc/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,6 @@ pub(crate) struct Options {
/// the compiler will scrape examples and not generate documentation.
pub(crate) scrape_examples_options: Option<ScrapeExamplesOptions>,

/// Whether to generate documentation for tests.
pub(crate) document_tests: bool,

/// Note: this field is duplicated in `RenderOptions` because it's useful
/// to have it in both places.
pub(crate) unstable_features: rustc_feature::UnstableFeatures,
Expand Down Expand Up @@ -219,7 +216,6 @@ impl fmt::Debug for Options {
.field("remap-file-prefix", &self.remap_path_prefix)
.field("nocapture", &self.nocapture)
.field("scrape_examples_options", &self.scrape_examples_options)
.field("document_tests", &self.document_tests)
.field("unstable_features", &self.unstable_features)
.finish()
}
Expand Down Expand Up @@ -824,7 +820,6 @@ impl Options {
output_format,
json_unused_externs,
scrape_examples_options,
document_tests,
unstable_features,
expanded_args: args,
};
Expand Down

0 comments on commit f8de95c

Please sign in to comment.