leiningen/test_projects/sample-no-aot/test/namespace.clj
2014-03-13 20:24:42 -05: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))