mirror of
https://github.com/Noratrieb/cargo-minimize.git
synced 2026-01-14 16:35:01 +01:00
9 lines
232 B
Rust
9 lines
232 B
Rust
use anyhow::{ensure, Result};
|
|
use std::process::Command;
|
|
|
|
#[test]
|
|
fn full_tests() -> Result<()> {
|
|
let status = Command::new("cargo").arg("runtest").spawn()?.wait()?;
|
|
ensure!(status.success(), "runtest failed");
|
|
Ok(())
|
|
}
|