Even better localization of $@, and don't use Test::Warn for the time being, as somet...
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema / ArtistSubclass.pm
1 package # hide from PAUSE
2     DBICTest::Schema::ArtistSubclass;
3
4 use base 'DBICTest::Schema::Artist';
5
6 __PACKAGE__->table(__PACKAGE__->table);
7
8 1;