finish preserve_case support
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 13db2_common.t
index e616f21..f5f1475 100644 (file)
@@ -12,8 +12,13 @@ my $tester = dbixcsl_common_tests->new(
     dsn            => $dsn,
     user           => $user,
     password       => $password,
-    db_schema      => uc $user,
-    no_auto_increment => 1
+    null           => '',
+    preserve_case_mode_is_exclusive => 1,
+    quote_char                      => '"',
+    data_types => {
+        'timestamp DEFAULT CURRENT TIMESTAMP' => { data_type => 'timestamp', default_value => \'current_timestamp',
+                                                   original => { default_value => \'current timestamp' } },
+    },
 );
 
 if( !$dsn || !$user ) {
@@ -22,3 +27,4 @@ if( !$dsn || !$user ) {
 else {
     $tester->run_tests();
 }
+# vim:et sts=4 sw=4 tw=0: