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