rust/crates/tools/tests/cli.rs

21 lines
441 B
Rust
Raw Normal View History

extern crate tools;
2018-10-31 21:41:43 +01:00
use tools::{generate, run_rustfmt, Verify};
#[test]
fn verify_template_generation() {
2018-10-16 19:53:19 +02:00
if let Err(error) = generate(Verify) {
2018-10-16 20:09:22 +02:00
panic!("{}. Please update it by running `cargo gen-syntax`", error);
}
}
#[test]
fn check_code_formatting() {
if let Err(error) = run_rustfmt(Verify) {
2018-10-31 21:41:43 +01:00
panic!(
"{}. Please format the code by running `cargo format`",
error
);
}
}