Test::TempDir
[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 no warnings qw/qw/;
9 DBICTest::Schema->load_classes(
10 qw/
11   Artist
12   CD
13   Track
14 /
15 );
16
17 1;