Not sure what this part of the test is for, but it breaks custom resultsets, and...
[dbsrgits/DBIx-Class.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;