11 lines
504 B
Rust
11 lines
504 B
Rust
//! Top-level integration testing crate for the lesavka workspace.
|
|
//!
|
|
//! Scope: keep cross-crate and contract-style tests out of package-local
|
|
//! `src/tests` and `tests` folders so CI has one integration test entrypoint.
|
|
//! Targets: the `testing/tests` suite plus coverage contracts consumed by the
|
|
//! Jenkins quality gate.
|
|
//! Why: a single top-level testing module is easier to scale, review, and
|
|
//! ratchet than ad-hoc integration tests spread across workspace members.
|
|
|
|
#![forbid(unsafe_code)]
|