forked from torrust/torrust-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.rs
More file actions
16 lines (15 loc) · 822 Bytes
/
Copy pathmod.rs
File metadata and controls
16 lines (15 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Test-only infrastructure for `axum-rest-api-server`.
//!
//! This module provides convenience setup code (wiring containers, starting/stopping
//! the server) for integration tests in this crate and external consumers such as
//! `axum-health-check-api-server`.
//!
//! > **Note**: Like `tracker-core::test_helpers`, this module is exported unconditionally
//! > from `lib.rs` so that external test packages can import it. It is primarily intended
//! > for test use, but is compiled in all build profiles.
//!
//! > **Note**: The UDP dependencies (`udp-server`, `udp-core`) are still
//! > needed at runtime because the production handlers in this crate reference
//! > their types directly. Full demotion to dev-dependencies requires the
//! > prerequisite decoupling in `rest-api-core` first.
pub mod environment;