X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F74mssql.t;h=c0cea0cc402a46e6fcd8220705a5b9dfd551d09b;hb=8de9298cd21c79c16337af2ee1adf61f906b803e;hp=e50f32fa2d9510bc3dd177cb7dc92f0f9e7067cc;hpb=651682ae3e04ca4f55d6915e0c8ddc7f257f8fa7;p=dbsrgits%2FDBIx-Class.git diff --git a/t/74mssql.t b/t/74mssql.t index e50f32f..c0cea0c 100644 --- a/t/74mssql.t +++ b/t/74mssql.t @@ -1,26 +1,38 @@ use strict; use warnings; +# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else +BEGIN { + if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) { + unshift @INC, $_ for split /:/, $lib_dirs; + } +} + use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_${_}" } qw/DSN USER PASS/}; -#warn "$dsn $user $pass"; - plan skip_all => 'Set $ENV{DBICTEST_MSSQL_DSN}, _USER and _PASS to run this test' unless ($dsn); -plan tests => 6; - +plan tests => 7; my $schema = DBICTest::Schema->clone; $schema->connection($dsn, $user, $pass); -my $dbh = $schema->storage->dbh; +# start disconnected to test reconnection +$schema->storage->ensure_connected; +$schema->storage->_dbh->disconnect; + +isa_ok($schema->storage, 'DBIx::Class::Storage::DBI::Sybase::Microsoft_SQL_Server'); -isa_ok($schema->storage, 'DBIx::Class::Storage::DBI::Sybase::MSSQL'); +my $dbh; +lives_ok (sub { + $dbh = $schema->storage->dbh; +}, 'reconnect works'); $dbh->do("IF OBJECT_ID('artist', 'U') IS NOT NULL DROP TABLE artist");