Merge pull request #64 from gerred/add-spec-unstrument

Add unstrument function to specs
This commit is contained in:
Sean Corfield 2019-09-14 13:22:29 -07:00 committed by GitHub
commit ea2af9db11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -202,3 +202,23 @@
`sql/get-by-id `sql/get-by-id
`sql/update! `sql/update!
`sql/delete!])) `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!]))