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