multi-step prefetch along the same rel (e.g. for trees) now works
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Setup.pm
index 6c52140..6b2e3f2 100755 (executable)
@@ -114,4 +114,12 @@ $schema->populate('CD_to_Producer', [
   [ 1, 3 ],
 ]);
 
+$schema->populate('TreeLike', [
+  [ qw/id parent name/ ],
+  [ 1, 0, 'foo'  ],
+  [ 2, 1, 'bar'  ],
+  [ 3, 2, 'baz'  ],
+  [ 4, 3, 'quux' ],
+]);
+
 1;