Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / MyStar.pm
index dffae9e..100fbf4 100644 (file)
@@ -1,10 +1,11 @@
 package # hide from PAUSE
     MyStar;
 
-use base 'MyBase';
-
+use warnings;
 use strict;
 
+use base 'MyBase';
+
 __PACKAGE__->set_table();
 __PACKAGE__->columns(All => qw/starid name/);
 __PACKAGE__->has_many(films => [ MyStarLink => 'film' ]);