Commit | Line | Data |
50041f3c |
1 | #!/usr/bin/perl |
2 | |
3 | use strict; |
4 | use warnings; |
5 | use Test::More; |
6 | |
cd67f809 |
7 | use lib qw(t/lib); |
50041f3c |
8 | |
c55acdbc |
9 | plan tests => 3; |
50041f3c |
10 | |
c55acdbc |
11 | my @warnings; |
12 | |
13 | { |
14 | local $SIG{__WARN__} = sub { push(@warnings, $_[0]); }; |
15 | require DBICTest::Plain; |
16 | } |
17 | |
18 | like($warnings[0], qr/compose_connection deprecated as of 0\.08000/, |
19 | 'deprecation warning emitted ok'); |
20 | cmp_ok(@warnings, '==', 1, 'no unexpected warnings'); |
50041f3c |
21 | cmp_ok(DBICTest::Plain->resultset('Test')->count, '>', 0, 'count is valid'); |