babashka/test-resources/lib_tests/clj_http/lite/test_runner.clj
Gabriel Horner 0294923fbc Added dozen manual test libs and converted 2 test libs
add-libtest.clj supports manually-added and test-directories options
2021-12-28 09:23:37 -05:00

10 lines
299 B
Clojure

(ns clj-http.lite.test-runner
(:require [clj-http.lite.client-test]
[clojure.test :as t]))
(defn -main [& _]
(let [{:keys [fail error]} (t/run-tests 'clj-http.lite.client-test)]
(System/exit (if (or (pos? fail)
(pos? error))
1 0))))