summaryrefslogtreecommitdiff
path: root/tests/core.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'tests/core.fnl')
-rw-r--r--tests/core.fnl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/core.fnl b/tests/core.fnl
index 0220c06..fe14670 100644
--- a/tests/core.fnl
+++ b/tests/core.fnl
@@ -790,6 +790,7 @@
(testing "sets into tables"
(assert-eq (into [] (core.ordered-set 1 2 3)) [1 2 3])
+ (assert-eq (into [] (core.ordered-set :a :b :c)) [:a :b :c])
(assert-eq (into {} (core.ordered-set [:a 1] [:b 2])) {:a 1 :b 2})))
(deftest memoization