Merge 'DBIx-Class-current' into 'datetime'
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Setup.pm
index 8bdd756..833bebf 100755 (executable)
@@ -137,4 +137,19 @@ $schema->populate('Track', [
   [ 18, 1, 3, "Beehind You"],
 ]);
 
+$schema->populate('Event', [
+  [ qw/id starts_at/ ],
+  [ 1, '2006-04-25 22:24:33' ],
+]);
+
+$schema->populate('Link', [
+  [ qw/id title/ ],
+  [ 1, 'aaa' ]
+]);
+
+$schema->populate('Bookmark', [
+  [ qw/id link/ ],
+  [ 1, 1 ]
+]);
+
 1;