File: transaction_test.clj

package info (click to toggle)
next-jdbc-clojure 1.3.955-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 876 kB
  • sloc: xml: 62; sh: 39; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 631 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; copyright (c) 2019-2021 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)