refactor journal data creation into separate methods
[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
c5fba518 8no warnings qw/qw/;
a5222e78 9DBICTest::Schema->load_classes(
10qw/
b5851590 11 Artist
12 CD
13 Track
14/
15);
16
171;