Merge 'DBIx-Class-current' into 'datetime'
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Setup.pm
index 7f57408..833bebf 100755 (executable)
@@ -4,7 +4,7 @@ use DBICTest;
 
 my $schema = DBICTest->initialise;
 
-$schema->storage->on_connect_do([ "PRAGMA synchronous = OFF" ]);
+# $schema->storage->on_connect_do([ "PRAGMA synchronous = OFF" ]);
 
 my $dbh = $schema->storage->dbh;
 
@@ -142,4 +142,14 @@ $schema->populate('Event', [
   [ 1, '2006-04-25 22:24:33' ],
 ]);
 
+$schema->populate('Link', [
+  [ qw/id title/ ],
+  [ 1, 'aaa' ]
+]);
+
+$schema->populate('Bookmark', [
+  [ qw/id link/ ],
+  [ 1, 1 ]
+]);
+
 1;