summaryrefslogtreecommitdiff
path: root/tests/tests.rs
diff options
context:
space:
mode:
authorNadrieril2019-02-27 20:39:29 +0100
committerNadrieril2019-02-27 20:39:29 +0100
commit2c00699d217e0a54d44678529fa3d87936071fec (patch)
treeb01bce29b06c71f50bbc8a2ce8beb127f7ed5bb2 /tests/tests.rs
parent8680920be83ecff0aaf6472b78599bb9108272a7 (diff)
Add Natural/Show builtin
Diffstat (limited to 'tests/tests.rs')
-rw-r--r--tests/tests.rs27
1 files changed, 20 insertions, 7 deletions
diff --git a/tests/tests.rs b/tests/tests.rs
index 5089ae8..d381efc 100644
--- a/tests/tests.rs
+++ b/tests/tests.rs
@@ -1,12 +1,25 @@
use dhall::*;
+macro_rules! include_test_str {
+ ($x:expr) => { include_str!(concat!("../dhall-lang/tests/", $x, ".dhall")) };
+}
+
+macro_rules! include_test_strs_ab {
+ ($x:expr) => { (include_test_str!(concat!($x, "A")), include_test_str!(concat!($x, "B"))) };
+}
+
+macro_rules! test_normalization {
+ ($x:expr) => {
+ let (expr_str, expected_str) = include_test_strs_ab!($x);
+ let expr = parser::parse_expr(&expr_str).unwrap();
+ let expected = parser::parse_expr(&expected_str).unwrap();
+ assert_eq!(normalize::<_, X, _>(&expr), normalize::<_, X, _>(&expected));
+ };
+}
+
+
#[test]
fn test(){
- let buffer_expr = String::from(include_str!("../dhall-lang/tests/normalization/success/simple/naturalPlusA.dhall"));
- let buffer_expected = String::from(include_str!("../dhall-lang/tests/normalization/success/simple/naturalPlusB.dhall"));
- let expr = parser::parse_expr(&buffer_expr).unwrap();
- let expected = parser::parse_expr(&buffer_expected).unwrap();
- // let type_expr = typecheck::type_of(&expr).unwrap();
- // let normalized = normalize::<_, X, _>(&expr);
- assert_eq!(normalize::<_, X, _>(&expr), normalize::<_, X, _>(&expected));
+ test_normalization!("normalization/success/simple/naturalPlus");
+ test_normalization!("normalization/success/simple/naturalShow");
}