11 lines
288 B
Common Lisp
11 lines
288 B
Common Lisp
;;; cl-scopes/test/config-sqlite.lisp
|
|
;;; use: `(load "test/...")` from package scopes/test-storage
|
|
|
|
(defparameter db-config-sqlite
|
|
'(:db-type :sqlite3
|
|
:connect-args
|
|
(:database-name "test/test.db")
|
|
:options nil))
|
|
|
|
(setf scopes/test-storage:*db-config-test* db-config-sqlite)
|
|
|