First stab at restructuring with tests_recursive() - no functional changes
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Thing.pm
CommitLineData
3bec1f52 1package Thing;
2use base 'DBIx::Class::Test::SQLite';
3
4Thing->set_table("thing");
5Thing->columns(All => qw(id that_thing));
6
7sub create_sql {
8 return qq{
9 id INTEGER,
10 that_thing INTEGER
11 };
12}
13
141;