leiningen/test_projects/sample-fixture-error/test/test_b.clj
2016-04-29 21:56:23 +00:00

11 lines
255 B
Clojure

(ns test-b
(:require [clojure.test :refer :all]
[test-a :refer [record-ran]]))
(use-fixtures :once
(fn [& _]
(throw (Exception. "Don't panic. This is an expected exception."))))
(deftest test-b
(record-ran :test-b)
(is (= 1 1)))