next-jdbc/test/next/jdbc/transaction_test.clj
Sean Corfield fdfb0697ec Address #24 by setting warn on reflection in tests
This highlights the reflection on `.close` (in the connection tests).
2019-05-29 09:04:21 -07:00

8 lines
278 B
Clojure

;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.transaction-test
"Stub test namespace for transaction handling."
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.transaction :refer :all]))
(set! *warn-on-reflection* true)