added test for 2 relationships in the same class to the same other class
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema.pm
1 package DBICTest::Schema;
2
3 use base qw/DBIx::Class::Schema/;
4
5 __PACKAGE__->load_classes(qw/
6   Artist CD Track Tag LinerNotes OneKey TwoKeys FourKeys SelfRef SelfRefAlias /);
7
8 1;