lein-midje icon indicating copy to clipboard operation
lein-midje copied to clipboard

Leiningen plugin for Midje

Results 7 lein-midje issues
Sort by recently updated
recently updated
newest added

lein-midje on JDK9 fails with the following exception: ``` Exception in thread "main" java.lang.ClassNotFoundException: sun.misc.Launcher, compiling:(dynapath/defaults.clj:29:3) at clojure.lang.Compiler.analyzeSeq(Compiler.java:6875) at clojure.lang.Compiler.analyze(Compiler.java:6669) at clojure.lang.Compiler.analyze(Compiler.java:6625) at clojure.lang.Compiler$BodyExpr$Parser.parse(Compiler.java:6001) at clojure.lang.Compiler$LetExpr$Parser.parse(Compiler.java:6319) at clojure.lang.Compiler.analyzeSeq(Compiler.java:6868) at clojure.lang.Compiler.analyze(Compiler.java:6669)...

### Description `lein midje :autotest` will not rerun tests in external dependencies after modifying .clj files under `src/` folder. ### Steps to reproduce bug (example project) 1. Clone `training-day` repository...

Let's say I have the following in my `project.clj`: ``` clojure ... :eval-in :leiningen :profiles {:midje {:dependencies [[midje "1.5.1"]] :plugins [[lein-midje "3.1.3-RC2"]]}} ... ``` No tests are defined so far,...

bug

I call `lein midje` from a `pre-commit` hook, and rely on the command exit status to proceed or abandon commit. Yet, when all tests succeed but there is some kind...

bug

In `src/leiningen/midje.clj`, `make-load-facts-form` limits the error code to 255, which is unsafe as it might clash with error codes reserved by the shell - see e.g. `man 1 bash`: ```...

I imagine a server mode for `lein midje :autotest` where it would report the last status of the tests, e.g. using a HTTP API returning JSON objects: ``` GET("/api/v1/tests") =>...

After writing code and running 'lein midje' for a while occasionally midje breaks, I can't run more test, instead I get the stacktrace shown below. Running 'lein clean' (or 'lein...

bug