cl-scopes/test/config-postgres.lisp

16 lines
408 B
Common Lisp

;;; cl-scopes/test/config-postgres.lisp
;;; use: `(load "test/...")` from package scopes/test-storage
(defparameter db-config-postgres
'(:backend :dbi
:db-type :postgres
:connect-args
(:database-name "cltest"
:host "localhost"
:port 5432
:username "testuser"
:password "secret")
:options
(:schema "testing")))
(setf scopes/test-storage:*db-config-test* db-config-postgres)