3e6a7e65764715c448bbb0f26ba414a16537d8a4
[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 __PACKAGE__->table(__PACKAGE__->table);
9 __PACKAGE__->source_name('SourceNameArtists');
10
11 1;