next-jdbc/test/next/jdbc/prepare_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

13 lines
549 B
Clojure

;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.prepare-test
"Stub test namespace for PreparedStatement creation etc.
This functionality is core to all of the higher-level stuff so it mostly
gets tested that way, but there should be some dedicated tests in here
eventually that ensure all of the options specific to PreparedStatement
actually work they way they're supposed to!"
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.prepare :refer :all]))
(set! *warn-on-reflection* true)