next-jdbc/test/next/jdbc/prepare_test.clj
Sean Corfield 42cfe88859 Stub test namespaces
Outline some of the things we might test.
2019-04-18 21:51:58 -07:00

11 lines
515 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]))