Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
lane-a-pipeline
main
tag: launch-2026-06-01
Files
Commits
Issues
makenotwork
/
server
/
tests
/
load.rs
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