13 lines
413 B
Rust
13 lines
413 B
Rust
|
|
// 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();
|
||
|
|
}
|