release v0.900201
[dbsrgits/DBIx-Class-Journal.git] / t / lib / DBICTest / Schema.pm
CommitLineData
b5851590 1package # hide from PAUSE
2 DBICTest::Schema;
3
4use base qw/DBIx::Class::Schema/;
5
6__PACKAGE__->load_components(qw/+DBIx::Class::Schema::Journal/);
7
8dc58fe2 8__PACKAGE__->journal_component("Journal::EvalWrap");
9
c5fba518 10no warnings qw/qw/;
a5222e78 11DBICTest::Schema->load_classes(
12qw/
b5851590 13 Artist
14 CD
15 Track
16/
17);
18
191;