summaryrefslogtreecommitdiff
path: root/dhall/tests/spec.rs
diff options
context:
space:
mode:
authorBasile Henry2020-10-25 18:30:57 +0100
committerGitHub2020-10-25 18:30:57 +0100
commit8f15b9a53f85ec1f806a36c5d1a0fe455e077e70 (patch)
tree32d311e0aff29e77b167c95a0051d916b2788c4c /dhall/tests/spec.rs
parent49e202de4478c2933f9179ea23efc7d991c35381 (diff)
parent0f2522aadcc81481b14c8611db2777670a85ab32 (diff)
Merge pull request #181 from basile-henry/text-replace
Implement Text/replace
Diffstat (limited to '')
-rw-r--r--dhall/tests/spec.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/dhall/tests/spec.rs b/dhall/tests/spec.rs
index 9572d52..8d67892 100644
--- a/dhall/tests/spec.rs
+++ b/dhall/tests/spec.rs
@@ -519,6 +519,10 @@ fn define_features() -> Vec<TestFeature> {
|| path == "simple/integerToDouble"
// TODO: fix Double/show
|| path == "prelude/JSON/number/1"
+ // With builtin not implemented yet
+ || path == "unit/WithCreateIntermediateRecords"
+ || path == "unit/WithDesugar"
+ || path == "unit/WithPartiallyAbstract"
}),
..default_feature.clone()
},
@@ -538,7 +542,12 @@ fn define_features() -> Vec<TestFeature> {
variant: SpecTestKind::TypeInferenceSuccess,
// TODO: this fails because of caching shenanigans
// too_slow_path: Rc::new(|path: &str| path == "prelude"),
- exclude_path: Rc::new(|path: &str| path == "prelude"),
+ exclude_path: Rc::new(|path: &str| {
+ false
+ || path == "prelude"
+ // With builtin not implemented yet
+ || path == "unit/WithCreateIntermediateRecords"
+ }),
..default_feature.clone()
},
TestFeature {