cl-scopes/test/config-sqlite.lisp

13 lines
350 B
Common Lisp

;;; cl-scopes/test/config-sqlite.lisp
;;; use: `(load "test/...")` from package scopes/test-storage
(defparameter db-config-sqlite
`(:backend :dbi
:db-type :sqlite3
:connect-args
(:database-name
,(namestring (scopes/testing:test-path "test.db")))
:options nil))
(setf scopes/test-storage:*db-config-test* db-config-sqlite)