Stub test namespaces

Yes, real tests are coming soon...
This commit is contained in:
Sean Corfield 2019-04-18 14:15:15 -07:00
parent 2cd9e9372d
commit e1fa7055b4
7 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.connection-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.connection :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.prepare-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.prepare :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.protocols-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.protocols :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.quoted-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.quoted :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.result-set-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.result-set :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.sql-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.sql :refer :all]))

View file

@ -0,0 +1,5 @@
;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.transaction-test
(:require [clojure.test :refer [deftest is testing]]
[next.jdbc.transaction :refer :all]))