9 lines
331 B
Clojure
9 lines
331 B
Clojure
;; copyright (c) 2019-2024 Sean Corfield, all rights reserved
|
|
|
|
(ns next.jdbc.protocols-test
|
|
"Stub test namespace for low-level protocols. Nothing can really be tested
|
|
at this level tho'..."
|
|
(:require [clojure.test :refer [deftest is testing]]
|
|
[next.jdbc.protocols :refer :all]))
|
|
|
|
(set! *warn-on-reflection* true)
|