summaryrefslogtreecommitdiff
path: root/src/model/value.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/value.rs')
-rw-r--r--src/model/value.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/model/value.rs b/src/model/value.rs
index 59dac720..98d11e15 100644
--- a/src/model/value.rs
+++ b/src/model/value.rs
@@ -424,9 +424,5 @@ mod tests {
test(dict![], "(:)");
test(dict!["one" => 1], "(one: 1)");
test(dict!["two" => false, "one" => 1], "(one: 1, two: false)");
-
- // Functions, content and dynamics.
- test(Func::from_fn("nil", |_, _| Ok(Value::None)), "<function nil>");
- test(Dynamic::new(1), "1");
}
}