我有一个使用 Midje 库进行测试的 Leiningen 项目。lein test
但是我无法运行任何测试,以防万一
java.io.FileNotFoundException: Could not locate midje/sweet__init.class or midje/sweet.clj on classpath
或者lein midje test
我得到
java.io.FileNotFoundException: Could not locate midje/util/ecosystem__init.class or midje/util/ecosystem.clj on classpath
所以我想这是因为我错误地定义dev
了具有依赖关系的配置文件,但我不确定真正的问题在哪里。
作为奖励,我也无法environ
工作,我总是得到nil
想要从地图中拉出一些财产的env
东西(这也可能是同样的问题)。
我的project.clj
(defproject
project
"0.1.0-SNAPSHOT"
:dependencies
[[org.clojure/clojure "1.8.0"]
[environ "1.1.0"]
;; other deps, midje is not there
:repl-options
{:init-ns mailing.repl}
:jvm-opts
["-server"]
:plugins
[[lein-ring "0.8.13"]
[lein-environ "1.0.0"]
[lein-ancient "0.5.5"]
[migratus-lein "0.4.2"]]
:ring
{:handler mailing.handler/app,
:init mailing.handler/init,
:destroy mailing.handler/destroy}
:profiles
{:uberjar {:omit-source true, :env {:production true}, :aot :all},
:production
{:ring {:open-browser? false, :stacktraces? false, :auto-reload? false}},
{:dev
{:env
{:db-user "user"
:db-password "psswd"
:db-classname "org.postgresql.Driver"
:db-subprotocol "postgresql"
:db-subname "//localhost/mailer"}}}
{:dependencies
[[ring-mock "0.1.5"]
[ring/ring-devel "1.3.1"]
[midje "1.6.3"]],
:env {:dev true}}}
:migratus {
:store :database
:migration-dir "migrations"
:db {
:classname "org.postgresql.Driver"
:subprotocol "postgresql"
:subname "//localhost/mailer"
:user "usr"
:password "psswd"}}
;; refer to user and psswd from project
:min-lein-version "2.0.0")