We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba118da commit 838046aCopy full SHA for 838046a
src/test/cljs/cljs/lite_collections_test.cljs
@@ -24,9 +24,17 @@
24
(is (== (hash (simple-map-entry 1 2))
25
(hash (MapEntry. 1 2 nil)))))
26
27
+(deftest test-simple-set-with-set
28
+ (is (= (simple-set []) (set [])))
29
+ (is (= (set []) (simple-set []))))
30
+
31
(comment
32
33
(require '[cljs.lite-collections-test] :reload)
34
(cljs.test/run-tests)
35
36
+ ;; failing
37
+ (= (simple-set [(simple-map-entry 1 2)])
38
+ (set [(MapEntry. 1 2 nil)]))
39
40
)
0 commit comments