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