mirror of
https://github.com/status-im/timbre.git
synced 2025-02-18 06:36:23 +00:00
13 lines
372 B
Clojure
13 lines
372 B
Clojure
(ns taoensso.timbre.tests.main
|
|
(:require [expectations :as test :refer :all]
|
|
[taoensso.timbre :as timbre]))
|
|
|
|
(timbre/refer-timbre)
|
|
|
|
(comment (test/run-tests '[taoensso.timbre.tests.main]))
|
|
|
|
(defn- before-run {:expectations-options :before-run} [])
|
|
(defn- after-run {:expectations-options :after-run} [])
|
|
|
|
(expect true) ; TODO Add tests (PRs welcome!)
|