lein-cucumber
lein-cucumber copied to clipboard
A simple leiningen plugin for running clojure-based cucumber-jvm specifications.
This warning appears to be from lein-cucumber depending on an old version of leiningen-core.
Looking at the linked example (https://github.com/nilswloka/cucumber-jvm/blob/new-clojure-example/examples/clojure_cukes/test/features/step_definitions/cuke_steps.clj) I added `(use 'clojure-cukes.core)` to my `steps.clj` file but `lein cucumber` throws: ``` clojure Caused by: java.io.FileNotFoundException: Could not locate clojure_cukes/core__init.class or clojure_cukes/core.clj on...
Ran all the features defined in the project and they work fine.
I'm using `lein-cucumber` to run tests through the browser with `clj-webdriver`. With `lein cucumber 1.0.2` and `clj-webdriver 0.6.0-beta2` this works fine. When I upgrade the webdriver(!) version to `0.6.0-beta3` or...
Adding a Before step seems to work fine, but adding an After step seems to run all features twice. I do not know if this is a lein-cucumber fault or...