next-jdbc/test/next/jdbc/quoted_test.clj
2019-04-18 18:30:38 -07:00

13 lines
365 B
Clojure

;; copyright (c) 2019 Sean Corfield, all rights reserved
(ns next.jdbc.quoted-test
(:require [clojure.test :refer [deftest are]]
[next.jdbc.quoted :refer :all]))
(deftest basic-quoting
(are [quote-fn quoted] (= (quote-fn "x") quoted)
ansi "\"x\""
mysql "`x`"
sql-server "[x]"
oracle "\"x\""
postgres "\"x\""))