diff options
Diffstat (limited to 'tests/parser.rs')
-rw-r--r-- | tests/parser.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/parser.rs b/tests/parser.rs deleted file mode 100644 index af2ae11bb..000000000 --- a/tests/parser.rs +++ /dev/null | |||
@@ -1,14 +0,0 @@ | |||
1 | extern crate libsyntax2; | ||
2 | extern crate testutils; | ||
3 | |||
4 | use libsyntax2::parse; | ||
5 | use libsyntax2::utils::dump_tree; | ||
6 | use testutils::dir_tests; | ||
7 | |||
8 | #[test] | ||
9 | fn parser_tests() { | ||
10 | dir_tests(&["parser/inline", "parser/ok", "parser/err"], |text| { | ||
11 | let file = parse(text); | ||
12 | dump_tree(&file) | ||
13 | }) | ||
14 | } | ||