Fixup several tests silently broken by 12e7015a
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / ArtistSubclass.pm
CommitLineData
b1fb2c94 1package # hide from PAUSE
2 DBICTest::Schema::ArtistSubclass;
3
4a233f30 4use warnings;
5use strict;
6
b1fb2c94 7use base 'DBICTest::Schema::Artist';
3aa25d8b 8use mro 'c3';
b1fb2c94 9
10__PACKAGE__->table(__PACKAGE__->table);
11
121;