summaryrefslogtreecommitdiff
path: root/src/model/value.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-12-14 10:09:44 +0100
committerLaurenz <laurmaedje@gmail.com>2022-12-14 10:09:44 +0100
commit9ba4d2c134479aad876a0e2ac4cd1622a353109e (patch)
treea94e0e6ae53a1ba440e869fca26cc2ea0b179057 /src/model/value.rs
parent4c73456fc1f5df8ebb3a89d9db657c3c54624d66 (diff)
New macro setup
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");
}
}