leiningen/test_projects/sample_no_aot/test/namespace.clj

12 lines
246 B
Clojure
Raw Normal View History

(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))