2019-04-18 21:15:15 +00:00
|
|
|
;; copyright (c) 2019 Sean Corfield, all rights reserved
|
|
|
|
|
|
|
|
|
|
(ns next.jdbc.prepare-test
|
2019-04-19 04:51:58 +00:00
|
|
|
"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!"
|
2019-04-18 21:15:15 +00:00
|
|
|
(:require [clojure.test :refer [deftest is testing]]
|
|
|
|
|
[next.jdbc.prepare :refer :all]))
|
2019-05-29 16:04:21 +00:00
|
|
|
|
|
|
|
|
(set! *warn-on-reflection* true)
|