Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/tests.rs')
-rw-r--r--crates/syntax/src/tests.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/crates/syntax/src/tests.rs b/crates/syntax/src/tests.rs
index a1f35aab68..58c4b5b8fc 100644
--- a/crates/syntax/src/tests.rs
+++ b/crates/syntax/src/tests.rs
@@ -60,15 +60,6 @@ fn validation_tests() {
}
#[test]
-fn expr_parser_tests() {
- fragment_parser_dir_test(
- &["parser/fragments/expr/ok"],
- &["parser/fragments/expr/err"],
- crate::ast::Expr::parse,
- );
-}
-
-#[test]
fn path_parser_tests() {
fragment_parser_dir_test(
&["parser/fragments/path/ok"],
@@ -87,15 +78,6 @@ fn pattern_parser_tests() {
}
#[test]
-fn stmt_parser_tests() {
- fragment_parser_dir_test(
- &["parser/fragments/stmt/ok"],
- &["parser/fragments/stmt/err"],
- crate::ast::Stmt::parse,
- );
-}
-
-#[test]
fn parser_fuzz_tests() {
for (_, text) in collect_rust_files(&test_data_dir(), &["parser/fuzz-failures"]) {
fuzz::check_parser(&text)