summaryrefslogtreecommitdiff
path: root/dhall/src/phase/parse.rs
diff options
context:
space:
mode:
authorNadrieril2019-05-09 10:55:08 +0200
committerNadrieril2019-05-09 10:55:25 +0200
commit325228d54a5b51979e0be112a51988c7449df89c (patch)
tree4ba5329b523ffd77d185a624ee5e1b8a5112064d /dhall/src/phase/parse.rs
parent6c06aefc5a6184f9411316990d9223447b022aa0 (diff)
Generate normalization tests automatically
Diffstat (limited to '')
-rw-r--r--dhall/src/phase/parse.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/dhall/src/phase/parse.rs b/dhall/src/phase/parse.rs
index 6b426af..d5cb9f5 100644
--- a/dhall/src/phase/parse.rs
+++ b/dhall/src/phase/parse.rs
@@ -29,10 +29,3 @@ pub(crate) fn parse_binary_file(f: &Path) -> Result<Parsed, Error> {
let root = ImportRoot::LocalDir(f.parent().unwrap().to_owned());
Ok(Parsed(expr.note_absurd(), root))
}
-
-#[cfg(test)]
-mod spec_tests {
- #![rustfmt::skip]
- // See build.rs
- include!(concat!(env!("OUT_DIR"), "/parser_tests.rs"));
-}