Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / MyStarLink.pm
index 1da8733..27254d8 100644 (file)
@@ -1,10 +1,11 @@
 package # hide from PAUSE
     MyStarLink;
 
-use base 'MyBase';
-
+use warnings;
 use strict;
 
+use base 'MyBase';
+
 __PACKAGE__->set_table();
 __PACKAGE__->columns(All => qw/linkid film star/);
 __PACKAGE__->has_a(film  => 'MyFilm');