Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Lazy.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 Lazy;
ea2e61bf 3
4a233f30 4use warnings;
ea2e61bf 5use strict;
6
4a233f30 7use base 'DBIC::Test::SQLite';
8
ea2e61bf 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
16sub create_sql {
6a3bf251 17 return qq{
18 this INTEGER,
19 that INTEGER,
20 eep INTEGER,
21 orp INTEGER,
22 oop INTEGER,
23 opop INTEGER
24 };
ea2e61bf 25}
26
271;
28