Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / testlib / Lazy.pm
1 package # hide from PAUSE 
2     Lazy;
3
4 BEGIN { unshift @INC, './t/testlib'; }
5 use base 'DBIx::Class::Test::SQLite';
6 use 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
15 sub 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
26 1;
27