X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstorage%2Fbase.t;h=b7650a8751766c4d565837ca3e5ae6f0862eddee;hb=5c505cafa292b25dbbfb0df53ac30e73069834a2;hp=451f7e6257a7e993daa9d4b69f6327793d5c29a1;hpb=37f94f8d9efd0f1df653fc45861aef161c28b992;p=dbsrgits%2FDBIx-Class.git diff --git a/t/storage/base.t b/t/storage/base.t index 451f7e6..b7650a8 100644 --- a/t/storage/base.t +++ b/t/storage/base.t @@ -27,6 +27,34 @@ throws_ok { } qr/prepare_cached failed/, 'exception via DBI->HandleError, etc'; +# make sure repeated disconnection works +{ + my $fn = DBICTest->_sqlite_dbfilename; + + lives_ok { + $schema->storage->ensure_connected; + my $dbh = $schema->storage->dbh; + $schema->storage->disconnect for 1,2; + unlink $fn; + $dbh->disconnect; + }; + + lives_ok { + $schema->storage->ensure_connected; + $schema->storage->disconnect for 1,2; + unlink $fn; + $schema->storage->disconnect for 1,2; + }; + + lives_ok { + $schema->storage->ensure_connected; + $schema->storage->_dbh->disconnect; + unlink $fn; + $schema->storage->disconnect for 1,2; + }; +} + + # testing various invocations of connect_info ([ ... ]) my $coderef = sub { 42 }; @@ -148,8 +176,6 @@ for my $type (keys %$invocations) { ); } -$schema->storage->_dbh->disconnect; - # make sure connection-less storages do not throw on _determine_driver # but work with ENV at the same time SKIP: for my $env_dsn (undef, (DBICTest->_database)[0] ) {