nested txn_do doesn't create nested changesets
[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
6b2f2965 8__PACKAGE__->journal_connection(['dbi:SQLite:t/var/Audit.db']);
b5851590 9
c5fba518 10no warnings qw/qw/;
a5222e78 11DBICTest::Schema->load_classes(
12qw/
b5851590 13 Artist
14 CD
15 Track
16/
17);
18
191;