Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / MyFilm.pm
index 9e9a656..40ecf7e 100644 (file)
@@ -1,11 +1,12 @@
 package # hide from PAUSE
     MyFilm;
 
+use warnings;
+use strict;
+
 use base 'MyBase';
 use MyStarLink;
 
-use strict;
-
 __PACKAGE__->set_table();
 __PACKAGE__->columns(All => qw/filmid title/);
 __PACKAGE__->has_many(_stars => 'MyStarLink');