Open samuela opened 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:
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.
sbt test
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
:But
sbt test
still says that all tests pass.