lesavka/tests/api/common/cli/common_cli_contract.rs

13 lines
413 B
Rust
Raw Normal View History

// Integration coverage for the common CLI entrypoint contract.
//
// Scope: execute the public common CLI helper from the centralized test harness
// crate.
// Targets: `common/src/lib.rs`.
// Why: this keeps even tiny user-facing helpers represented in cross-crate
// contract coverage without package-local integration tests.
#[test]
fn run_cli_executes_without_panicking() {
lesavka_common::run_cli();
}