Add some tests and fix up for the results..
[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
c5fba518 8__PACKAGE__->journal_user(['DBICTest::Schema::Artist', {'foreign.artistid' => 'self.user_id'}]);
b5851590 9
c5fba518 10no warnings qw/qw/;
b5851590 11__PACKAGE__->load_classes(qw/
12 Artist
13 CD
14 Track
15/
16);
17
181;