From 12275f68968228b9d5490d9f70df1440855ddfba Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Wed, 4 Sep 2024 21:21:30 +0100 Subject: [PATCH] add more test for table= --- pkgs/anoia/init.fnl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/anoia/init.fnl b/pkgs/anoia/init.fnl index d209d53..cc606a6 100644 --- a/pkgs/anoia/init.fnl +++ b/pkgs/anoia/init.fnl @@ -66,7 +66,10 @@ (assert (table= {:a 1 :b {:l 17}} {:b {:l 17} :a 1})) (assert (table= {:a [4 5 6 7] } {:a [4 5 6 7]})) (assert (not (table= {:a [4 5 6 7] } {:a [4 5 6 7 8]}))) - (assert (not (table= {:a [4 5 7 6] } {:a [4 5 6 7 ]})))) + (assert (not (table= {:a [4 5 7 6] } {:a [4 5 6 7 ]}))) + + (assert (table= {} {})) + ) (fn dig [tree path] (match path