babashka/test-resources/lib_tests/missing/test/assertions_test.cljc
Gabriel Horner 78a05139cb Add a number of library tests from projects.md
Also add more docs around adding test libs and tweak add script
2021-12-28 09:23:37 -05:00

12 lines
254 B
Clojure

(ns missing.test.assertions-test
(:require
[clojure.test :refer [deftest testing is] :as t]
[missing.test.old-methods]
[missing.test.assertions]))
(deftest a-test
(testing "FIXME, I fail."
1))
(deftest another-test
(testing (is 1)))