X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F10_07mssql_common.t;h=316da7f8c7dfe53f46bcefb2603ce3103fbdac89;hb=afcd3c328a72efb747e248e0e3df8afc751ae3a1;hp=4ce93a795aacd312c7864eaeeedef51da6de2c4f;hpb=3b17d9885e593f0705e1e16360b816778d71ec95;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/10_07mssql_common.t b/t/10_07mssql_common.t index 4ce93a7..316da7f 100644 --- a/t/10_07mssql_common.t +++ b/t/10_07mssql_common.t @@ -13,7 +13,7 @@ BEGIN { } my ($dsns, $common_version); -for (qw/MSSQL MSSQL_ODBC/) { +for (qw/MSSQL MSSQL_ODBC MSSQL_ADO/) { next unless $ENV{"DBICTEST_${_}_DSN"}; $dsns->{$_}{dsn} = $ENV{"DBICTEST_${_}_DSN"}; @@ -103,7 +103,9 @@ my $tester = dbixcsl_common_tests->new( float => { data_type => 'double precision' }, 'double precision' => { data_type => 'double precision' }, + 'numeric(6)' => { data_type => 'numeric', size => [6,0] }, 'numeric(6,3)' => { data_type => 'numeric', size => [6,3] }, + 'decimal(6)' => { data_type => 'decimal', size => [6,0] }, 'decimal(6,3)' => { data_type => 'decimal', size => [6,3] }, 'dec(6,3)' => { data_type => 'decimal', size => [6,3] }, numeric => { data_type => 'numeric' },