X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F39load_namespaces_2.t;h=5b31c0993385b9a4be70d6093739147498beb921;hb=26283ee38f220f6c6bae720ea5a189c9c0f47f6f;hp=7bcb7c92ba628f9f6e3b1e91d5fbd4c2a46e8dd5;hpb=46a05fd450f4848c6dc5f1302001571a79f4728e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/39load_namespaces_2.t b/t/39load_namespaces_2.t index 7bcb7c9..5b31c09 100644 --- a/t/39load_namespaces_2.t +++ b/t/39load_namespaces_2.t @@ -4,7 +4,8 @@ use strict; use warnings; use Test::More; -unshift(@INC, './t/lib'); +use lib qw(t/lib); +use DBICTest; # do not remove even though it is not used plan tests => 6; @@ -14,12 +15,12 @@ eval { package DBICNSTest; use base qw/DBIx::Class::Schema/; __PACKAGE__->load_namespaces( - source_namespace => 'Src', + result_namespace => 'Rslt', resultset_namespace => 'RSet', ); }; ok(!$@) or diag $@; -like($warnings, qr/load_namespaces found ResultSet class C with no corresponding source-definition class/); +like($warnings, qr/load_namespaces found ResultSet class C with no corresponding Result class/); my $source_a = DBICNSTest->source('A'); isa_ok($source_a, 'DBIx::Class::ResultSource::Table');