diff options
Diffstat (limited to 'crates/tools/tests/cli.rs')
-rw-r--r-- | crates/tools/tests/cli.rs | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/crates/tools/tests/cli.rs b/crates/tools/tests/cli.rs deleted file mode 100644 index 6f82ae61d..000000000 --- a/crates/tools/tests/cli.rs +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | use walkdir::WalkDir; | ||
2 | |||
3 | use tools::{generate, gen_tests, run_rustfmt, Verify, project_root}; | ||
4 | |||
5 | #[test] | ||
6 | fn generated_grammar_is_fresh() { | ||
7 | if let Err(error) = generate(Verify) { | ||
8 | panic!("{}. Please update it by running `cargo gen-syntax`", error); | ||
9 | } | ||
10 | } | ||
11 | |||
12 | #[test] | ||
13 | fn generated_tests_are_fresh() { | ||
14 | if let Err(error) = gen_tests(Verify) { | ||
15 | panic!("{}. Please update tests by running `cargo gen-tests`", error); | ||
16 | } | ||
17 | } | ||
18 | |||
19 | #[test] | ||
20 | fn check_code_formatting() { | ||
21 | if let Err(error) = run_rustfmt(Verify) { | ||
22 | panic!("{}. Please format the code by running `cargo format`", error); | ||
23 | } | ||
24 | } | ||
25 | |||
26 | #[test] | ||
27 | fn no_todo() { | ||
28 | WalkDir::new(project_root().join("crates")).into_iter().for_each(|e| { | ||
29 | let e = e.unwrap(); | ||
30 | if e.path().extension().map(|it| it != "rs").unwrap_or(true) { | ||
31 | return; | ||
32 | } | ||
33 | if e.path().ends_with("tests/cli.rs") { | ||
34 | return; | ||
35 | } | ||
36 | let text = std::fs::read_to_string(e.path()).unwrap(); | ||
37 | if text.contains("TODO") { | ||
38 | panic!( | ||
39 | "\nTODO markers should not be commited to the master branch,\n\ | ||
40 | use FIXME instead\n\ | ||
41 | {}\n", | ||
42 | e.path().display(), | ||
43 | ) | ||
44 | } | ||
45 | }) | ||
46 | } | ||