Closed eigenhombre closed 12 years ago
Try moving the [lein-autoexpect "0.0.2"] to be under your :dev-depenencies section. After doing that with your example it was able to find it.
As a heads up, the current version of lein-autoexpect is 0.0.3. This release fixes an issue with it not respecting :test-path or :source-path keys in the project definition.
Closing issue for now. Let me know if you need anything else.
Works, thank you! And thanks for updating the README.
(django-pydev-venv)mac 06:12:34 > cat project.clj (defproject aetest "1.0.0-SNAPSHOT" :description "FIXME: write description" :dependencies [[org.clojure/clojure "1.2.1"] [lein-autoexpect "0.0.2"]] :dev-dependencies [[lein-expectations "0.0.1"] [expectations "1.1.0"]]) (django-pydev-venv)mac 06:14:07 > lein deps Copying 3 files to /Users/jacobsen/Programming/Lisp/Clojure/aetest/lib Copying 5 files to /Users/jacobsen/Programming/Lisp/Clojure/aetest/lib/dev (django-pydev-venv)mac 06:14:16 > lein autoexpect That's not a task. Use "lein help" to list all tasks. (django-pydev-venv)mac 06:14:23 >
Many thanks, excited to try this out out.