mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 08:25:01 +01:00
11 lines
156 B
Rust
11 lines
156 B
Rust
use anyhow::Result;
|
|
|
|
fn run_test(_: &str) -> Result<()> {
|
|
let _ = tempfile::tempdir()?;
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn smoke() {
|
|
run_test("").unwrap();
|
|
}
|