e1b97fa40868a5c7b211fec43e88adbfcb1b2bbb
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / ArtistSubclass.pm
1 package # hide from PAUSE
2     DBICTest::Schema::ArtistSubclass;
3
4 use warnings;
5 use strict;
6
7 use base 'DBICTest::Schema::Artist';
8
9 __PACKAGE__->table(__PACKAGE__->table);
10
11 1;