X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=e882ee77644e12d82dc164eefe378d704257206d;hb=3e6fb1021178baa133c85f35c7ed89a9ae91bca9;hp=d2a7e5b796b6c6da9b0218215255724de5194cd2;hpb=54540863adce71e931685a37d33e37650e5feb5e;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index d2a7e5b..e882ee7 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema; +package # hide from PAUSE + DBICTest::Schema; use base qw/DBIx::Class::Schema/; @@ -6,6 +7,7 @@ no warnings qw/qw/; __PACKAGE__->load_classes(qw/ Artist + Employee CD #dummy Track @@ -16,13 +18,18 @@ __PACKAGE__->load_classes(qw/ OneKey #dummy TwoKeys + Serialized /]}, ( 'FourKeys', '#dummy', 'SelfRef', + 'ArtistUndirectedMap', + 'ArtistSourceName', + 'Producer', + 'CD_to_Producer', ), - qw/SelfRefAlias CDWithArtist/ + qw/SelfRefAlias TreeLike TwoKeyTreeLike/ ); 1;