Still do null-branch pruning when we are using our own inflate_result()
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / OtherFilm.pm
index 5d97101..a0afdd8 100644 (file)
@@ -1,20 +1,22 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     OtherFilm;
 
+use warnings;
 use strict;
+
 use base 'Film';
 
 __PACKAGE__->set_table('Different_Film');
 
 sub create_sql {
-       return qq{
-               title                   VARCHAR(255),
-               director                VARCHAR(80),
-               codirector              VARCHAR(80),
-               rating                  CHAR(5),
-               numexplodingsheep       INTEGER,
-               hasvomit                CHAR(1)
-       };
+  return qq{
+    title                   VARCHAR(255),
+    director                VARCHAR(80),
+    codirector              VARCHAR(80),
+    rating                  CHAR(5),
+    numexplodingsheep       INTEGER,
+    hasvomit                CHAR(1)
+  };
 }
 
 1;