Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Lazy.pm
index 2b2137e..e7770b8 100644 (file)
@@ -1,9 +1,11 @@
-package # hide from PAUSE 
+package # hide from PAUSE
     Lazy;
 
-use base 'DBIx::Class::Test::SQLite';
+use warnings;
 use strict;
 
+use base 'DBIC::Test::SQLite';
+
 __PACKAGE__->set_table("Lazy");
 __PACKAGE__->columns('Primary',   qw(this));
 __PACKAGE__->columns('Essential', qw(opop));
@@ -12,14 +14,14 @@ __PACKAGE__->columns('horizon',   qw(eep orp));
 __PACKAGE__->columns('vertical',  qw(oop opop));
 
 sub create_sql {
-       return qq{
-               this INTEGER,
-               that INTEGER,
-               eep  INTEGER,
-               orp  INTEGER,
-               oop  INTEGER,
-               opop INTEGER
-       };
+  return qq{
+    this INTEGER,
+    that INTEGER,
+    eep  INTEGER,
+    orp  INTEGER,
+    oop  INTEGER,
+    opop INTEGER
+  };
 }
 
 1;