X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=d69abc00a3cb868743d75cea3d08a52d9a8fa12f;hb=e6a8b3fc4dc400af1a7ed827eaf9752ec99ad289;hp=d2a7e5b796b6c6da9b0218215255724de5194cd2;hpb=54540863adce71e931685a37d33e37650e5feb5e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index d2a7e5b..d69abc0 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,7 +7,10 @@ no warnings qw/qw/; __PACKAGE__->load_classes(qw/ Artist + Employee CD + Link + Bookmark #dummy Track Tag @@ -16,13 +20,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;