diff options
author | Aleksey Kladov <[email protected]> | 2019-08-19 10:26:34 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-08-19 10:26:34 +0100 |
commit | 038975b348b03dd3063d14cabd30fa71b010baea (patch) | |
tree | 43535287459df418afd25f0a672f187f4355f3d7 /crates/ra_tools/tests | |
parent | aa250ff612b10c02bfbc197557adfd4c70e01e43 (diff) |
plug new boilerplate_gen into ra_tools
Diffstat (limited to 'crates/ra_tools/tests')
-rw-r--r-- | crates/ra_tools/tests/cli.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_tools/tests/cli.rs b/crates/ra_tools/tests/cli.rs index ae0eb337d..c672e5788 100644 --- a/crates/ra_tools/tests/cli.rs +++ b/crates/ra_tools/tests/cli.rs | |||
@@ -1,10 +1,10 @@ | |||
1 | use walkdir::WalkDir; | 1 | use walkdir::WalkDir; |
2 | 2 | ||
3 | use ra_tools::{gen_tests, generate, project_root, run_rustfmt, Verify}; | 3 | use ra_tools::{gen_tests, generate_boilerplate, project_root, run_rustfmt, Verify}; |
4 | 4 | ||
5 | #[test] | 5 | #[test] |
6 | fn generated_grammar_is_fresh() { | 6 | fn generated_grammar_is_fresh() { |
7 | if let Err(error) = generate(Verify) { | 7 | if let Err(error) = generate_boilerplate(Verify) { |
8 | panic!("{}. Please update it by running `cargo gen-syntax`", error); | 8 | panic!("{}. Please update it by running `cargo gen-syntax`", error); |
9 | } | 9 | } |
10 | } | 10 | } |