leiningen/test_projects/sample_no_aot/test/namespace.clj
Jim Crossley e770d5e649 Include namespace metadata in test-selector predicates, fixes #242
More specific metadata wins, e.g. deftest trumps its namespace.

Also tweaked the tests a bit so that actual/expected results are now
shown in the output.
2012-10-02 19:38:35 -04:00

11 lines
246 B
Clojure

(ns ^:integration namespace
(:use [clojure.test]
[selectors :only [record-ran]]))
(deftest integration-test
(record-ran :integration-ns)
(is true))
(deftest ^:int2 int2-integration-test
(record-ran :integration-ns)
(is true))