X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FResultSetManager%2FFoo.pm;h=d776491cea1b1865b7833b94f55a7191f00ec4da;hb=HEAD;hp=7253ac194b7aea75f1c2c8fd13ee94bde1571f90;hpb=b1fb2c941d66c82f2704e51f53bca84b9edfc2aa;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/ResultSetManager/Foo.pm b/t/lib/DBICTest/ResultSetManager/Foo.pm index 7253ac1..d776491 100644 --- a/t/lib/DBICTest/ResultSetManager/Foo.pm +++ b/t/lib/DBICTest/ResultSetManager/Foo.pm @@ -1,8 +1,12 @@ -package # hide from PAUSE +package # hide from PAUSE DBICTest::ResultSetManager::Foo; -use base 'DBIx::Class'; -__PACKAGE__->load_components(qw/ ResultSetManager Core /); +use warnings; +use strict; + +use base 'DBIx::Class::Core'; + +__PACKAGE__->load_components(qw/ ResultSetManager /); __PACKAGE__->table('foo'); sub bar : ResultSet { 'good' }