next-jdbc/test/next/jdbc/transaction_test.clj
Sean Corfield 03117d1160
add date of last release; update copyright years
Signed-off-by: Sean Corfield <sean@corfield.org>
2024-11-09 16:38:25 -08:00

17 lines
631 B
Clojure

;; copyright (c) 2019-2024 Sean Corfield, all rights reserved
(ns next.jdbc.transaction-test
"Stub test namespace for transaction handling."
(:require [clojure.test :refer [deftest is testing use-fixtures]]
[next.jdbc :as jdbc]
[next.jdbc.specs :as specs]
[next.jdbc.test-fixtures :refer [with-test-db db ds column
default-options
derby? mssql? mysql? postgres?]]
[next.jdbc.transaction :as tx]))
(set! *warn-on-reflection* true)
(use-fixtures :once with-test-db)
(specs/instrument)