Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / testlib / Director.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 Director;
ea2e61bf 3
4BEGIN { unshift @INC, './t/testlib'; }
5
6use strict;
7use base 'DBIx::Class::Test::SQLite';
8
9__PACKAGE__->set_table('Directors');
10__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
11
12sub create_sql {
13 return qq{
14 name VARCHAR(80),
15 birthday INTEGER,
16 isinsane INTEGER
17 };
18}
19
201;
21