fix MySQL rel introspection with on_connect_call => "set_strict_mode" (RT#52087)
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 15sybase_common.t
index bce97e1..5bb0578 100644 (file)
@@ -2,14 +2,15 @@ use strict;
 use lib qw(t/lib);
 use dbixcsl_common_tests;
 
-# you need maxConnect=256 in your DSN for this test to pass
+# You need the sybase branch of DBIx::Class, from:
+# http://dev.catalyst.perl.org/repos/bast/DBIx-Class/0.08/branches/sybase
 
 my $dsn      = $ENV{DBICTEST_SYBASE_DSN} || '';
 my $user     = $ENV{DBICTEST_SYBASE_USER} || '';
 my $password = $ENV{DBICTEST_SYBASE_PASS} || '';
 
 my $tester = dbixcsl_common_tests->new(
-    vendor      => 'Sybase',
+    vendor      => 'sybase',
     auto_inc_pk => 'INTEGER IDENTITY NOT NULL PRIMARY KEY',
     dsn         => $dsn,
     user        => $user,