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