cl-scopes/test/config-postgres.lisp

15 lines
390 B
Common Lisp

;;; cl-scopes/test/config-postgres.lisp
;;; use: `(load "test/...")` from package scopes/test-storage
(defparameter db-config-postgres
'(: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)