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