Skip to main content
Makenot
.
work
Discover
Use Cases
Docs
Fan+
Login
Join
max
/
makenotwork
main
tag: launch-2026-06-01
tag: magicmirror-v0.1.1
tag: magicmirror-v0.3.0
tag: mnw-cli-v0.1.2
tag: mnw-cli-v0.1.3
tag: mnw-cli-v0.1.4
tag: pom-v0.4.1
tag: pom-v0.4.2
tag: pom-v0.4.3
tag: pom-v0.4.4
tag: pom-v0.4.5
tag: wam-v0.3.0
tag: wam-v0.3.1
Files
Commits
Tags
Notes
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