Add unstrument function to specs

Signed-off-by: Gerred Dillon <hello@gerred.org>
This commit is contained in:
Gerred Dillon 2019-09-14 15:51:46 -04:00
parent 8a61033583
commit 740e1abaaf

View file

@ -202,3 +202,23 @@
`sql/get-by-id
`sql/update!
`sql/delete!]))
(defn unstrument []
(st/unstrument [`jdbc/get-datasource
`jdbc/get-connection
`jdbc/prepare
`jdbc/plan
`jdbc/execute!
`jdbc/execute-one!
`jdbc/transact
`jdbc/with-transaction
`connection/->pool
`prepare/execute-batch!
`prepare/set-parameters
`sql/insert!
`sql/insert-multi!
`sql/query
`sql/find-by-keys
`sql/get-by-id
`sql/update!
`sql/delete!]))