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