Fix to update(\%args) with inflation from test case by Peter Rabbitson
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema.pm
index 2a94ce9..8090e51 100644 (file)
@@ -2,7 +2,31 @@ package DBICTest::Schema;
 
 use base qw/DBIx::Class::Schema/;
 
+no warnings qw/qw/;
+
 __PACKAGE__->load_classes(qw/
-  Artist CD Track Tag LinerNotes OneKey TwoKeys FourKeys SelfRef SelfRefAlias /);
+  Artist
+  CD
+  #dummy
+  Track
+  Tag
+  /,
+  { 'DBICTest::Schema' => [qw/
+    LinerNotes
+    OneKey
+    #dummy
+    TwoKeys
+    Serialized
+  /]},
+  (
+    'FourKeys',
+    '#dummy',
+    'SelfRef',
+    'ArtistUndirectedMap',
+    'Producer',
+    'CD_to_Producer',
+  ),
+  qw/SelfRefAlias TreeLike/
+);
 
 1;