Skip to content

Commit fea514f

Browse files
committed
- add lite collections assertions, cleanup
1 parent bc0ebad commit fea514f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/test/cljs/cljs/lite_collections_test.cljs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77
; You must not remove this notice, or any other, from this software.
88

99
(ns cljs.lite-collections-test
10-
(:require [cljs.test :refer-macros [deftest testing is are run-tests]]))
10+
(:require [cljs.test :refer [deftest testing is]]))
1111

12-
;; NOTE: ** this name space must be tested with :lite-mode true **
12+
;; NOTE: ** this namespace must be tested with :lite-mode true **
1313

1414
(deftest test-obj-map
1515
(let [a (. ObjMap -EMPTY)
1616
b {}]
17-
(is (identical? a b))))
17+
(is (identical? a b)))
18+
(let [a {:foo 1}]
19+
(is (== 1 (:foo a)))))

0 commit comments

Comments
 (0)