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