14 local $SIG{__WARN__} = sub { push(@warnings, $_[0]); };
15 require DBICTest::Plain;
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');
21 cmp_ok(DBICTest::Plain->resultset('Test')->count, '>', 0, 'count is valid');