12 local $SIG{__WARN__} = sub { push(@warnings, $_[0]); };
13 require DBICTest::Plain;
16 like($warnings[0], qr/compose_connection deprecated as of 0\.08000/,
17 'deprecation warning emitted ok');
18 cmp_ok(@warnings, '==', 1, 'no unexpected warnings');
19 cmp_ok(DBICTest::Plain->resultset('Test')->count, '>', 0, 'count is valid');