File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/clj/cider/nrepl/middleware Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
(is (= {:var-status " not-found" :status #{:toggle-trace-error :done }}
20
20
(toggle-trace-var {:ns " clojure.core" :sym " mappp" }))))
21
21
22
- (testing " toogle -trace-var-op not traceable var, should return `not-traceable`"
22
+ (testing " toggle -trace-var-op not traceable var, should return `not-traceable`"
23
23
(is (= {:var-name " #'clojure.core/and" :var-status " not-traceable" }
24
24
(toggle-trace-var {:ns " clojure.core" :sym " and" }))))))
25
25
26
26
(deftest toggle-trace-ns-test
27
- (testing " toogling "
27
+ (testing " toggling "
28
28
(is (= {:ns-status " traced" }
29
29
(toggle-trace-ns {:ns " clojure.core" })))
30
30
(is (= {:ns-status " untraced" }
31
31
(toggle-trace-ns {:ns " clojure.core" }))))
32
32
33
- (testing " toogle -trace-ns-op missing ns should return `not-found`"
33
+ (testing " toggle -trace-ns-op missing ns should return `not-found`"
34
34
(is (= {:ns-status " not-found" }
35
35
(toggle-trace-ns {:ns " clojure.corex" })))))
36
36
You can’t perform that action at this time.
0 commit comments