We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bcfd9e commit cb0336bCopy full SHA for cb0336b
src/cook/environment/env_reader.rs
@@ -31,18 +31,15 @@
31
//!
32
//! ## Test Code
33
34
-//! ```no_run
35
-//! // In tests, use stillwater::MockEnv for isolated environment testing
36
-//! // Example test structure (use in actual test files):
37
-//! //
38
-//! // use stillwater::MockEnv;
39
40
-//! // fn test_process_with_config() {
41
-//! // let env = MockEnv::new()
42
-//! // .with_env("API_KEY", "test-key-123");
43
44
-//! // process_with_config(&env).unwrap();
45
-//! // }
+//! ```ignore
+//! use stillwater::MockEnv;
+//!
+//! fn test_process_with_config() {
+//! let env = MockEnv::new()
+//! .with_env("API_KEY", "test-key-123");
+//! process_with_config(&env).unwrap();
+//! }
46
//! ```
47
48
use std::ffi::OsString;
0 commit comments