1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use assert_cmd::Command; #[test] fn clippy() { Command::new("cargo") .args([ "+nightly", "clippy", "--all-targets", "--", "--deny=warnings", ]) .assert() .success(); }