File tree 6 files changed +38
-5
lines changed
6 files changed +38
-5
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,5 @@ checkouts/*
14
14
15
15
.portal
16
16
.lsp /.cache
17
- .clj-kondo /.cache
17
+ .clj-kondo /.cache
18
+ ** /.calva /
Original file line number Diff line number Diff line change 1
1
target /*
2
2
.nrepl *
3
+ .cpcache
Original file line number Diff line number Diff line change 1
1
{:paths [" src" " resources" ],
2
2
:deps
3
- {org.clojure/clojure {:mvn/version " 1.8.0" },
4
- io.dropwizard.metrics/metrics-core {:mvn/version " 4.0.5" },
3
+ {io.dropwizard.metrics/metrics-core {:mvn/version " 4.0.5" },
5
4
io.dropwizard.metrics/metrics-jmx {:mvn/version " 4.0.5" }},
5
+ :aliases {:clojure-1.9 {:extra-deps {org.clojure/clojure {:mvn/version " 1.9.0" }}}
6
+ :clojure-1.11 {:extra-deps {org.clojure/clojure {:mvn/version " 1.11.1" }}}
7
+ :clojure-next {:extra-deps {org.clojure/clojure {:mvn/version " 1.12.0-alpha5" }}}
8
+ :dev {:extra-paths [" test" ]
9
+ :extra-deps {org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }}}
10
+ :test {:extra-deps {org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }
11
+ lambdaisland/kaocha {:mvn/version " 1.87.1366" }}
12
+ :exec-fn kaocha.runner/exec-fn
13
+ :exec-args {}}
14
+ :watch-test {:extra-deps {org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }
15
+ lambdaisland/kaocha {:mvn/version " 1.87.1366" }}
16
+ :exec-fn kaocha.runner/exec-fn
17
+ :exec-args {:watch? true
18
+ :skip-meta :slow
19
+ :fail-fast? true }}}
6
20
:mvn/repos
7
21
{" sonatype"
8
22
{:url " http://oss.sonatype.org/content/repositories/releases" ,
Original file line number Diff line number Diff line change 4
4
5
5
(deftest regression-default-registry-tag
6
6
(testing " Ensure default-registry no longer has invalid reflection :tag"
7
- (.getMeters core/default-registry)))
7
+ (is (instance? java.util.Collections$UnmodifiableSortedMap
8
+ (.getMeters core/default-registry)))))
Original file line number Diff line number Diff line change 26
26
(is (= (mt/time! deftimered (sleep-100 )) 100 ))
27
27
(is (> (mt/rate-mean deftimered ) 0.0 ))
28
28
(is (= (mt/rate-mean deftimered-3-arity) 0.0 ))
29
- (is (= (mt/time! deftimered-3-arity (sleep-100 ))))
29
+ (is (= (mt/time! deftimered-3-arity (sleep-100 )) 100 ))
30
30
(is (> (mt/rate-mean deftimered ) 0.0 ))))
31
31
32
32
Original file line number Diff line number Diff line change
1
+ {:kaocha/tests [{:kaocha.testable/type :kaocha.type/clojure.test
2
+ :kaocha.testable/id :unit
3
+ :kaocha/ns-patterns [" -test$" ]
4
+ :kaocha/source-paths [" src" ]
5
+ :kaocha/test-paths [" test" ]}]
6
+ :kaocha/fail-fast? false
7
+ :kaocha/color? true
8
+ :kaocha/reporter [kaocha.report/dots]
9
+ :kaocha/plugins [:kaocha.plugin/randomize
10
+ :kaocha.plugin/filter
11
+ :kaocha.plugin/capture-output
12
+ :kaocha.plugin/profiling ]
13
+ :kaocha.plugin.randomize/seed 950716166
14
+ :kaocha.plugin.randomize/randomize? true
15
+ :kaocha.plugin.profiling/count 3
16
+ :kaocha.plugin.profiling/profiling? true }
You can’t perform that action at this time.
0 commit comments