X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F39load_namespaces_3.t;h=ebfa87db68f5650fbc793383ff8db8b8590c372b;hb=076be7c46559c6c27b70946893e2f82d1ff4e0a0;hp=f4fa3860b152f4a97ed01d214292a6c3913c0b59;hpb=d81900119bbe932c7c112c022cce3d51a11979bb;p=dbsrgits%2FDBIx-Class.git diff --git a/t/39load_namespaces_3.t b/t/39load_namespaces_3.t index f4fa386..ebfa87d 100644 --- a/t/39load_namespaces_3.t +++ b/t/39load_namespaces_3.t @@ -3,24 +3,24 @@ use strict; use warnings; use Test::More; +use Test::Exception; +use Test::Warn; use lib qw(t/lib); use DBICTest; # do not remove even though it is not used -plan tests => 7; - -my $warnings; -eval { - local $SIG{__WARN__} = sub { $warnings .= shift }; - package DBICNSTestOther; - use base qw/DBIx::Class::Schema/; - __PACKAGE__->load_namespaces( - result_namespace => [ '+DBICNSTest::Rslt', '+DBICNSTest::OtherRslt' ], - resultset_namespace => '+DBICNSTest::RSet', - ); -}; -ok(!$@) or diag $@; -like($warnings, qr/load_namespaces found ResultSet class C with no corresponding Result class/); +lives_ok (sub { + warnings_exist ( sub { + package DBICNSTestOther; + use base qw/DBIx::Class::Schema/; + __PACKAGE__->load_namespaces( + result_namespace => [ '+DBICNSTest::Rslt', '+DBICNSTest::OtherRslt' ], + resultset_namespace => '+DBICNSTest::RSet', + ); + }, + qr/load_namespaces found ResultSet class C with no corresponding Result class/, + ); +}); my $source_a = DBICNSTestOther->source('A'); isa_ok($source_a, 'DBIx::Class::ResultSource::Table'); @@ -34,3 +34,5 @@ isa_ok($rset_b, 'DBIx::Class::ResultSet'); my $source_d = DBICNSTestOther->source('D'); isa_ok($source_d, 'DBIx::Class::ResultSource::Table'); + +done_testing;