1 2 3 4 5 6 7 8 9
use anyhow::Result; #[test] fn cli_tests() -> Result<()> { trycmd::TestCases::new() .case("tests/cmd/*.toml") .run(); Ok(()) }