summaryrefslogtreecommitdiff
path: root/dhall/tests/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dhall/tests/macros.rs')
-rw-r--r--dhall/tests/macros.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/dhall/tests/macros.rs b/dhall/tests/macros.rs
index 5ad2ab3..6031a34 100644
--- a/dhall/tests/macros.rs
+++ b/dhall/tests/macros.rs
@@ -18,7 +18,13 @@ macro_rules! run_spec_test {
};
(parser, $path:expr) => {
let expr_str = include_test_str!(concat!($path, "A"));
- parser::parse_expr(&expr_str).unwrap();
+ parser::parse_expr_pest(&expr_str).map_err(|e| println!("{}", e)).unwrap();
+ // parser::parse_expr(&expr_str).unwrap();
+ };
+ (parser_failure, $path:expr) => {
+ let expr_str = include_test_str!($path);
+ parser::parse_expr_pest(&expr_str).map_err(|e| println!("{}", e)).unwrap_err();
+ // parser::parse_expr(&expr_str).unwrap();
};
}