Force no_defer on DBIC-internal quote_sub() invocations
[dbsrgits/DBIx-Class.git] / xt / extra / internals / dbictest_unlink_guard.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
574d9b69 3use warnings;
4use strict;
5
6use Test::More;
c0329273 7
574d9b69 8use DBICTest;
9
10# Once upon a time there was a problem with a leaking $sth
11# which in turn delayed the $dbh destruction, which in turn
12# made the inode comaprison fire at the wrong time
13# This simulates the problem without doing much else
14for (1..2) {
15 my $schema = DBICTest->init_schema( sqlite_use_file => 1 );
16 $schema->storage->ensure_connected;
17 isa_ok ($schema, 'DBICTest::Schema');
18}
19
20done_testing;
21