lesavka/testing/tests/common_cli_contract.rs

13 lines
415 B
Rust
Raw Normal View History

//! Integration coverage for the common CLI entrypoint contract.
//!
//! Scope: execute the public common CLI helper from the centralized testing
//! 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();
}