put extra mssql tests in the proper format
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 16mssql_odbc_common.t
index fdf1888..0e2e44c 100644 (file)
@@ -1,17 +1,19 @@
 use strict;
 use lib qw(t/lib);
 use dbixcsl_common_tests;
+use dbixcsl_mssql_extra_tests;
 
 my $dsn      = $ENV{DBICTEST_MSSQL_ODBC_DSN} || '';
 my $user     = $ENV{DBICTEST_MSSQL_ODBC_USER} || '';
 my $password = $ENV{DBICTEST_MSSQL_ODBC_PASS} || '';
 
 my $tester = dbixcsl_common_tests->new(
-    vendor      => 'Microsoft',
+    vendor      => 'mssql',
     auto_inc_pk => 'INTEGER IDENTITY NOT NULL PRIMARY KEY',
     dsn         => $dsn,
     user        => $user,
     password    => $password,
+    extra       => dbixcsl_mssql_extra_tests->extra,
 );
 
 if( !$dsn || !$user ) {