Add strict/warnings test, adjust all offenders (wow, that was a lot)
[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';
aec3eff1 8__PACKAGE__->table(__PACKAGE__->table);
bab77431 9__PACKAGE__->source_name('SourceNameArtists');
10
111;