Merge 'trunk' into 'storage-interbase'
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / ArtistSubclass.pm
1 package # hide from PAUSE
2     DBICTest::Schema::ArtistSubclass;
3
4 use base 'DBICTest::Schema::Artist';
5
6 __PACKAGE__->table(__PACKAGE__->table);
7
8 1;