diff options
Diffstat (limited to 'crates/tools/tests')
-rw-r--r-- | crates/tools/tests/cli.rs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/crates/tools/tests/cli.rs b/crates/tools/tests/cli.rs index 5de52fc2b..8c53a8230 100644 --- a/crates/tools/tests/cli.rs +++ b/crates/tools/tests/cli.rs | |||
@@ -1,7 +1,7 @@ | |||
1 | extern crate tools; | 1 | extern crate tools; |
2 | 2 | ||
3 | use tools::{ | 3 | use tools::{ |
4 | generate, Verify | 4 | generate, Verify, run_rustfmt, |
5 | }; | 5 | }; |
6 | 6 | ||
7 | #[test] | 7 | #[test] |
@@ -10,3 +10,10 @@ fn verify_template_generation() { | |||
10 | panic!("{}. Please update it by running `cargo gen-syntax`", error); | 10 | panic!("{}. Please update it by running `cargo gen-syntax`", error); |
11 | } | 11 | } |
12 | } | 12 | } |
13 | |||
14 | #[test] | ||
15 | fn check_code_formatting() { | ||
16 | if let Err(error) = run_rustfmt(Verify) { | ||
17 | panic!("{}. Please format the code by running `cargo format`", error); | ||
18 | } | ||
19 | } | ||