I found the problem... in my core.clj i was using (slurp *in*) to get 
contents via stdin. 
'lein midje' performs 'lein run' first?

Em quarta-feira, 11 de abril de 2018 20:27:04 UTC-3, Renata Soares escreveu:
>
> Hello,
>
> I am running 'lein midje' on my project and looks like an infinite loop. 
> Doesn't show any message of error. 
>
> Project.clj:
>
> (defproject job-queue "0.1.0-SNAPSHOT"
>   :description "FIXME: write description"
>   :url "http://example.com/FIXME";
>   :main job-queue.core
>   :license {:name "Eclipse Public License"
>             :url "http://www.eclipse.org/legal/epl-v10.html"}
>   :dependencies [[org.clojure/clojure "1.8.0"]
>                  [org.clojure/data.json "0.2.6"]
>                  [midje "1.9.0"]]
>   :plugins [[lein-midje "3.2.1"]])
>
> I created this test just to check the midje:
>
> (ns job-queue.core-test
> (:require [job-queue.core :refer :all]
>   [midje.sweet :refer :all]))
>
> (fact
>   [1 3 5 8] => (contains even?))
>
> What can it be?
>
> Thanks.
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to