Geal / sbt-clojure

SBT plugin building Clojure code
MIT License
32 stars 13 forks source link

Clojure tests don't work #2

Open samuela opened 9 years ago

samuela commented 9 years ago

Looking at https://github.com/Geal/sbt-clojure/blob/master/src/main/scala/ClojurePlugin.scala#L47 it seems as though sbt-clojure is designed to have support for clojure tests. However, I can't get them to run. In src/test/clojure/parser-test.clj:

(ns parser-test
  (:use clojure.test
        parser))

(deftest a-test
  (testing "FIXME, I fail."
    (is (= 0 1))))

But sbt test still says that all tests pass.