Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / testlib / Lazy.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Lazy;
ea2e61bf 3
4BEGIN { unshift @INC, './t/testlib'; }
5use base 'DBIx::Class::Test::SQLite';
6use strict;
7
8__PACKAGE__->set_table("Lazy");
9__PACKAGE__->columns('Primary', qw(this));
10__PACKAGE__->columns('Essential', qw(opop));
11__PACKAGE__->columns('things', qw(this that));
12__PACKAGE__->columns('horizon', qw(eep orp));
13__PACKAGE__->columns('vertical', qw(oop opop));
14
15sub create_sql {
16 return qq{
17 this INTEGER,
18 that INTEGER,
19 eep INTEGER,
20 orp INTEGER,
21 oop INTEGER,
22 opop INTEGER
23 };
24}
25
261;
27