Institute a central "load this first in testing" package
[dbsrgits/DBIx-Class.git] / t / storage / dbi_coderef.t
1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 use DBICTest;
9
10 plan tests => 1;
11
12 # Set up the "usual" sqlite for DBICTest and disconnect
13 my $normal_schema = DBICTest->init_schema( sqlite_use_file => 1 );
14 $normal_schema->storage->disconnect;
15
16 # Steal the dsn, which should be like 'dbi:SQLite:t/var/DBIxClass.db'
17 my @dsn = ($normal_schema->storage->_dbi_connect_info->[0], undef, undef, {
18   RaiseError => 1
19 });
20
21 # Make a new clone with a new connection, using a code reference
22 my $code_ref_schema = $normal_schema->connect(sub { DBI->connect(@dsn); });
23
24 # Stolen from 60core.t - this just verifies things seem to work at all
25 my @art = $code_ref_schema->resultset("Artist")->search({ }, { order_by => 'name DESC'});
26 cmp_ok(@art, '==', 3, "Three artists returned");