Firebird passes common tests
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 18firebird_common.t
index 62da41c..6143e9d 100644 (file)
@@ -32,7 +32,6 @@ my $tester = dbixcsl_common_tests->new(
         );
     },
     null        => '',
-    date_datatype => 'TIMESTAMP',
     dsn         => $dsn,
     user        => $user,
     password    => $password,
@@ -43,5 +42,11 @@ if( !$dsn ) {
     $tester->skip_tests('You need to set the DBICTEST_FIREBIRD_DSN, _USER, and _PASS environment variables');
 }
 else {
+    # get rid of stupid warning from InterBase/GetInfo.pm
+    {
+        local $SIG{__WARN__} = sub {};
+        require DBD::InterBase;
+        require DBD::InterBase::GetInfo;
+    }
     $tester->run_tests();
 }