Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / ResultSetManager / Foo.pm
index 7253ac1..d776491 100644 (file)
@@ -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' }