We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
docsrs
1 parent 4b910d9 commit dc8fc80Copy full SHA for dc8fc80
testcontainers/src/core/image/runnable_image.rs
@@ -111,7 +111,7 @@ impl<I: Image> RunnableImage<I> {
111
/// Returns a new RunnableImage with the specified arguments.
112
///
113
/// # Examples
114
- /// ```
+ /// ```rust,no_run
115
/// use testcontainers::{core::RunnableImage, GenericImage};
116
117
/// let image = GenericImage::default();
testcontainers/src/lib.rs
@@ -1,5 +1,7 @@
1
#![deny(missing_debug_implementations)]
2
#![warn(rust_2018_idioms)]
3
+#![cfg_attr(docsrs, deny(rustdoc::broken_intra_doc_links))]
4
+#![cfg_attr(docsrs, feature(doc_cfg))]
5
6
//! A library for integration testing against docker containers from within Rust.
7
//!
0 commit comments