X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Futils.lisp;h=948d75a53b034d517a6ed28b0ba734360bbb775e;hb=fa4da6e40c8970a26c2b9fe8adb9a041ff39568d;hp=8e274d9e40686c6be6289d4685a76115ae503a14;hpb=5148be446aee32ec705beac3fbba35f499df4fd4;p=clsql.git diff --git a/tests/utils.lisp b/tests/utils.lisp index 8e274d9..948d75a 100644 --- a/tests/utils.lisp +++ b/tests/utils.lisp @@ -24,9 +24,8 @@ :type "config")) (defvar +all-db-types+ - #-clisp '(:postgresql :postgresql-socket :mysql :sqlite :odbc :oracle - #+allegro :aodbc) - #+clisp '(:sqlite)) + '(:postgresql :postgresql-socket :mysql :sqlite :sqlite3 :odbc :oracle + #+allegro :aodbc)) (defclass conn-specs () ((aodbc :accessor aodbc-spec :initform nil) @@ -34,6 +33,7 @@ (postgresql :accessor postgresql-spec :initform nil) (postgresql-socket :accessor postgresql-socket-spec :initform nil) (sqlite :accessor sqlite-spec :initform nil) + (sqlite3 :accessor sqlite3-spec :initform nil) (odbc :accessor odbc-spec :initform nil) (oracle :accessor oracle-spec :initform nil)) (:documentation "Connection specs for CLSQL testing"))