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