File tree 4 files changed +39
-3
lines changed
4 files changed +39
-3
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ checkouts/*
15
15
.portal
16
16
.lsp /.cache
17
17
.clj-kondo /.cache
18
- ** /.calva /
18
+ ** /.calva /
19
+ ** /.cpcache
Original file line number Diff line number Diff line change 1
1
{:paths [" src" " resources" ],
2
2
:deps
3
3
{cheshire/cheshire {:mvn/version " 5.10.0" },
4
- metrics-clojure/metrics-clojure {:mvn/version " 3.0.0-SNAPSHOT" }}}
4
+ metrics-clojure/metrics-clojure {:mvn/version " 2.2.0" }}
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
+ :override-deps {metrics-clojure/metrics-clojure
10
+ {:local/root " ../metrics-clojure-core" }}
11
+ :extra-deps {ring/ring {:mvn/version " 1.4.0" }
12
+ ring/ring-mock {:mvn/version " 0.3.0" }
13
+ org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }}}
14
+ :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 {}}
18
+ :watch-test {:extra-deps {org.slf4j/slf4j-simple {:mvn/version " 2.0.9" }
19
+ lambdaisland/kaocha {:mvn/version " 1.87.1366" }}
20
+ :exec-fn kaocha.runner/exec-fn
21
+ :exec-args {:watch? true
22
+ :skip-meta :slow
23
+ :fail-fast? true }}}}
Original file line number Diff line number Diff line change 5
5
6
6
(deftest test-expose-metrics-as-json
7
7
; ; Ensure that ring.expose compiles
8
- (expose-metrics-as-json (constantly nil )))
8
+ (is ( instance? Object ( expose-metrics-as-json (constantly nil )) )))
9
9
10
10
(deftest test-filter-matches?
11
11
(is (true ? (filter-matches? " ring.requests-scheme.rate.https" " " )))
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