nested txn_do doesn't create nested changesets
[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_connection(['dbi:SQLite:t/var/Audit.db']);
9
10 no warnings qw/qw/;
11 DBICTest::Schema->load_classes(
12 qw/
13   Artist
14   CD
15   Track
16 /
17 );
18
19 1;