Cleanup shebang lines of all maint/example scripts, remove from tests entirely
[dbsrgits/DBIx-Class.git] / t / 30dbicplain.t
CommitLineData
50041f3c 1use strict;
2use warnings;
3use Test::More;
4
cd67f809 5use lib qw(t/lib);
50041f3c 6
c55acdbc 7plan tests => 3;
50041f3c 8
c55acdbc 9my @warnings;
10
11{
12 local $SIG{__WARN__} = sub { push(@warnings, $_[0]); };
13 require DBICTest::Plain;
14}
15
16like($warnings[0], qr/compose_connection deprecated as of 0\.08000/,
17 'deprecation warning emitted ok');
18cmp_ok(@warnings, '==', 1, 'no unexpected warnings');
50041f3c 19cmp_ok(DBICTest::Plain->resultset('Test')->count, '>', 0, 'count is valid');