aboutsummaryrefslogtreecommitdiff
path: root/crates/tools/tests
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-06-10 23:47:37 +0100
committerAleksey Kladov <[email protected]>2019-06-10 23:47:37 +0100
commit10d34532e3e96ffd92c11e667deb453188c28282 (patch)
tree095ad479dde329bdbff034af1f3ec587f473b1db /crates/tools/tests
parent75e6c03883c4533b1134c806d166b72200b4837d (diff)
rename tools -> ra_tools
This should help with caching on CI I hope (see .travis.yml before_cache)
Diffstat (limited to 'crates/tools/tests')
-rw-r--r--crates/tools/tests/cli.rs46
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 @@
1use walkdir::WalkDir;
2
3use tools::{generate, gen_tests, run_rustfmt, Verify, project_root};
4
5#[test]
6fn 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]
13fn 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]
20fn 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]
27fn 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}