1 2 3 4 5 6 7 8 9
use std::path::PathBuf; use lazy_static::lazy_static; pub const BIN_NAME: &str = "file-declutter"; lazy_static! { pub static ref BIN_PATH: PathBuf = assert_cmd::cargo::cargo_bin(BIN_NAME); }