7 lines
144 B
Rust
7 lines
144 B
Rust
// Rust
|
|
#[test]
|
|
fn smoke_compiles_and_runs() {
|
|
// This test ensures the test harness works without exercising the CLI.
|
|
assert!(true);
|
|
}
|