From 0902b87cabbb50bb4325ddca044e2d9b111c0f2e Mon Sep 17 00:00:00 2001 From: Maximilian Weber Date: Thu, 9 Jun 2011 16:32:22 +0200 Subject: [PATCH] A sensible default for the lazytest-path has been added. --- project.clj | 2 +- src/leiningen/lazytest.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 28e3efe..85464bd 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lein-lazytest "1.0.2-SNAPSHOT" +(defproject lein-lazytest "1.0.3" :description "Lein plugin for starting LazyTest watch" :dependencies [[org.clojure/clojure "1.2.0"] [org.clojure/clojure-contrib "1.2.0"]] diff --git a/src/leiningen/lazytest.clj b/src/leiningen/lazytest.clj index 972b0da..c5717de 100644 --- a/src/leiningen/lazytest.clj +++ b/src/leiningen/lazytest.clj @@ -7,6 +7,6 @@ project `(do (require 'lazytest.watch) - (lazytest.watch/start ~(:lazytest-path project))))) + (lazytest.watch/start ~(get project :lazytest-path ["src" "test"])))))