Skip to main content

max / makenotwork

284 B · 13 lines History Blame Raw
1 //! Load test binary entry point.
2 //!
3 //! Shares the test harness with integration tests via `#[path]`.
4 //! Run with: `cargo test --test load -- --ignored --nocapture`
5
6 #[allow(dead_code)]
7 #[path = "load/mod.rs"]
8 mod load;
9
10 #[allow(dead_code)]
11 #[path = "harness/mod.rs"]
12 mod harness;
13