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