We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d939147 commit 64953acCopy full SHA for 64953ac
.github/workflows/test.yml
@@ -33,8 +33,8 @@ jobs:
33
key: cljdeps-${{ hashFiles('project.clj') }}
34
restore-keys: cljdeps-
35
36
- # - name: Run clj and cljs tests
37
- # run: lein test-all
+ - name: Run clj and cljs tests
+ run: lein test-all
38
39
- name: Run cljr tests
40
run: cljr -X:test
test/medley/core_test.cljc
@@ -14,7 +14,7 @@
14
(is (= (transduce (m/find-first even?) + 0 [7 3 3 7 3]) 0))))
15
16
(deftest test-dissoc-in
17
- (is (= (m/dissoc-in {} [:a :b :c])
+ (is (= (m/dissoc-in {:a {:b {:c 1 :d 2}}} [:a :b :c])
18
{:a {:b {:d 2}}}))
19
(is (= (m/dissoc-in {:a {:b {:c 1}}} [:a :b :c])
20
{}))
0 commit comments