r8910: rework so that tests are automatically run for multiple backends
[clsql.git] / tests / test-fddl.lisp
index 2767f130a98a808e2a93aa05d8f9922cb7d9570b..918c56f878ca0b964f701527437c82512274df6c 100644 (file)
@@ -3,7 +3,7 @@
 ;;;; File:    test-fddl.lisp
 ;;;; Author:  Marcus Pearce <m.t.pearce@city.ac.uk>
 ;;;; Created: 30/03/2004
-;;;; Updated: $Id$
+;;;; Updated: $Id$
 ;;;; ======================================================================
 ;;;;
 ;;;; Description ==========================================================
 
 #.(clsql:locally-enable-sql-reader-syntax)
 
+(setq *rt-fddl*
+      '(
+      
 ;; list current tables 
 (deftest :fddl/table/1
     (apply #'values 
            (sort (mapcar #'string-downcase
                          (clsql:list-tables :owner *test-database-user*))
                  #'string>))
-  "clsql_object_v" "employee" "company")
+  "employee" "company" "clsql_object_v")
 
 ;; create a table, test for its existence, drop it and test again 
 (deftest :fddl/table/2
         (clsql:drop-sequence [foo] :if-does-not-exist :ignore)))
   6)
 
+))
+
 #.(clsql:restore-sql-reader-syntax-state)