Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Film.pm
index 3d6c457..3bbd755 100644 (file)
@@ -1,9 +1,11 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     Film;
 
-use base 'DBIC::Test::SQLite';
+use warnings;
 use strict;
 
+use base 'DBIC::Test::SQLite';
+
 __PACKAGE__->set_table('Movies');
 __PACKAGE__->columns('Primary',   'Title');
 __PACKAGE__->columns('Essential', qw( Title ));
@@ -21,7 +23,7 @@ sub create_sql {
   }
 }
 
-sub create_test_film { 
+sub create_test_film {
   return shift->create({
     Title             => 'Bad Taste',
     Director          => 'Peter Jackson',