From 792bf242d70179a2fe6a7b6c9d5249e3ef22a20a Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 26 May 2019 16:15:33 -0700 Subject: [PATCH] Add a stub test namespace for specs Just for consistency and completion. --- test/next/jdbc/specs_test.clj | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/next/jdbc/specs_test.clj diff --git a/test/next/jdbc/specs_test.clj b/test/next/jdbc/specs_test.clj new file mode 100644 index 0000000..19cdee5 --- /dev/null +++ b/test/next/jdbc/specs_test.clj @@ -0,0 +1,9 @@ +;; copyright (c) 2019 Sean Corfield, all rights reserved + +(ns next.jdbc.specs-test + "Stub test namespace for the specs. + + The specs are used (and 'tested') as part of the tests for the + next.jdbc and next.jdbc.sql namespaces." + (:require [clojure.test :refer [deftest is testing]] + [next.jdbc.specs :refer :all]))