Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / 40compose_connection.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
e42bbd7f 3use strict;
4use warnings;
5use Test::More;
6use Test::Warn;
7
c0329273 8
e42bbd7f 9use DBICTest;
10
11warnings_exist { DBICTest->init_schema( compose_connection => 1, sqlite_use_file => 1 ) }
12 [
13 qr/compose_connection deprecated as of 0\.08000/,
14 qr/\QDBIx::Class::ResultSetProxy is DEPRECATED/,
15 ],
16 'got expected deprecation warnings'
17;
18
19cmp_ok(DBICTest->resultset('Artist')->count, '>', 0, 'count is valid');
20
21done_testing;