* Replaced eq_bind() implementation to use Test::Deep::eq_deeply().
[dbsrgits/DBIx-Class-Historic.git] / t / testlib / OtherThing.pm
1 package OtherThing;
2 use base 'DBIx::Class::Test::SQLite';
3
4 OtherThing->set_table("other_thing");
5 OtherThing->columns(All => qw(id));
6
7 sub create_sql {
8     return qq{
9         id              INTEGER
10     };
11 }