ffe17770e589ae0913c60b347878811c3a2489e2
[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_no_automatic_deploy(1);
9
10 __PACKAGE__->journal_connection(['dbi:SQLite:t/var/Audit.db']);
11
12 no warnings qw/qw/;
13 DBICTest::Schema->load_classes(
14 qw/
15   Artist
16   CD
17   Track
18 /
19 );
20
21 1;