10 lines
301 B
Clojure
10 lines
301 B
Clojure
(ns net.deertopia.doerg.config-test
|
|
(:require [clojure.test :as t]
|
|
[net.deertopia.doerg.config :as cfg]))
|
|
|
|
(defn test-config-fixture
|
|
"`clojure.test` fixture to run tests with the :test configuration."
|
|
[f]
|
|
(binding [cfg/*cfg* (cfg/read-config cfg/sources :profile :test)]
|
|
(f)))
|