2019-04-18 21:15:15 +00:00
|
|
|
;; copyright (c) 2019 Sean Corfield, all rights reserved
|
|
|
|
|
|
|
|
|
|
(ns next.jdbc.result-set-test
|
2019-04-19 04:51:58 +00:00
|
|
|
"Stub test namespace for the result set functions.
|
|
|
|
|
|
|
|
|
|
There's so much that should be tested here:
|
|
|
|
|
* column name generation functions
|
|
|
|
|
* ReadableColumn protocol extension point
|
|
|
|
|
* RowBuilder and ResultSetBuilder machinery
|
|
|
|
|
* datafy/nav support
|
|
|
|
|
* ResultSet-as-map for reducible! / -execute protocol
|
|
|
|
|
* -execute-one and -execute-all implementations"
|
2019-04-18 21:15:15 +00:00
|
|
|
(:require [clojure.test :refer [deftest is testing]]
|
|
|
|
|
[next.jdbc.result-set :refer :all]))
|