Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Thing.pm
CommitLineData
3bec1f52 1package Thing;
4a233f30 2
3use warnings;
4use strict;
5
97d61088 6use base 'DBIC::Test::SQLite';
3bec1f52 7
8Thing->set_table("thing");
9Thing->columns(All => qw(id that_thing));
10
11sub create_sql {
12 return qq{
13 id INTEGER,
14 that_thing INTEGER
15 };
16}
17
181;