Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Lazy.pm
1 package # hide from PAUSE
2     Lazy;
3
4 use warnings;
5 use strict;
6
7 use base 'DBIC::Test::SQLite';
8
9 __PACKAGE__->set_table("Lazy");
10 __PACKAGE__->columns('Primary',   qw(this));
11 __PACKAGE__->columns('Essential', qw(opop));
12 __PACKAGE__->columns('things',    qw(this that));
13 __PACKAGE__->columns('horizon',   qw(eep orp));
14 __PACKAGE__->columns('vertical',  qw(oop opop));
15
16 sub create_sql {
17   return qq{
18     this INTEGER,
19     that INTEGER,
20     eep  INTEGER,
21     orp  INTEGER,
22     oop  INTEGER,
23     opop INTEGER
24   };
25 }
26
27 1;
28