monger.testing => monger.testkit
If nothing else, this will save everyone some headaches trying to figure out conflicts between testing the namespace alias and clojure.test/testing (the function)
This commit is contained in:
parent
d0f386695e
commit
1db1e04b0a
3 changed files with 3 additions and 3 deletions
|
|
@ -7,7 +7,7 @@
|
|||
;; the terms of this license.
|
||||
;; You must not remove this notice, or any other, from this software.
|
||||
|
||||
(ns monger.testing
|
||||
(ns monger.testkit
|
||||
(:require [monger.collection :as mc]
|
||||
[monger.result :as mr])
|
||||
(:use [monger.internal.fn :only (expand-all expand-all-with) :as fntools])
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
(ns monger.test.factory-dsl
|
||||
(:use [clojure.test]
|
||||
[monger testing joda-time]
|
||||
[monger testkit joda-time]
|
||||
[monger.test.fixtures]
|
||||
[clj-time.core :only [days ago weeks now]])
|
||||
(:require [monger.collection :as mc]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
(ns monger.test.fixtures
|
||||
(:require [monger.collection :as mgcol])
|
||||
(:use [monger.testing]))
|
||||
(:use monger.testkit))
|
||||
|
||||
;;
|
||||
;; fixture functions
|
||||
|
|
|
|||
Loading…
Reference in a new issue