my @pids;
my $guard = $schema->txn_scope_guard;
- _forking_action ($schema);
+ @pids = _forking_action ($schema);
$guard->commit;
for my $pid (@pids) {
});
$guard->commit;
- } qr/No such column made_up_column .*? at .*?$fn line \d+/s, "Error propogated okay";
+ } qr/No such column made_up_column .*? at .*?\Q$fn\E line \d+/s, "Error propogated okay";
ok(!$artist_rs->find({name => 'Death Cab for Cutie'}), "Artist not created");