0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-22 06:46:40 -05:00
penpot/backend/vendor/vertx/test/vertx_tests/main.clj
2020-01-13 16:50:44 +01:00

15 lines
467 B
Clojure

;; This Source Code Form is subject to the terms of the Mozilla Public
;; License, v. 2.0. If a copy of the MPL was not distributed with this
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
;;
;; Copyright (c) 2019 Andrey Antukh <niwi@niwi.nz>
(ns vertx-tests.main
(:require [clojure.test :as t]))
(defn -main
[& args]
(let [{:keys [fail]} (t/run-all-tests #"^vertx-tests.*")]
(if (pos? fail)
(System/exit fail)
(System/exit 0))))