1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
6 BEGIN { $ENV{DBICTEST_VIA_REPLICATED} = 0 }
14 # Set up the "usual" sqlite for DBICTest and disconnect
15 my $normal_schema = DBICTest->init_schema( sqlite_use_file => 1 );
16 $normal_schema->storage->disconnect;
18 # Steal the dsn, which should be like 'dbi:SQLite:t/var/DBIxClass.db'
19 my @dsn = ($normal_schema->storage->_dbi_connect_info->[0], undef, undef, {
23 # Make a new clone with a new connection, using a code reference
24 my $code_ref_schema = $normal_schema->connect(sub { DBI->connect(@dsn); });
26 # Stolen from 60core.t - this just verifies things seem to work at all
27 my @art = $code_ref_schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
28 cmp_ok(@art, '==', 3, "Three artists returned");