Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Director.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 Director;
ea2e61bf 3
4a233f30 4use warnings;
ea2e61bf 5use strict;
4a233f30 6
97d61088 7use base 'DBIC::Test::SQLite';
ea2e61bf 8
9__PACKAGE__->set_table('Directors');
10__PACKAGE__->columns('All' => qw/ Name Birthday IsInsane /);
11
12sub create_sql {
6a3bf251 13 return qq{
14 name VARCHAR(80),
15 birthday INTEGER,
16 isinsane INTEGER
17 };
ea2e61bf 18}
19
201;
21