Revision history for DBIx::Class
+ - disable cdbi-t/02-Film.t warning tests under AS perl
- fixups to MySQL tests (aka "work round mysql being retarded")
- compat tweaks for Storage debug logging
$btaste->discard_changes;
is($btaste->Director, $orig_director, 'discard_changes()');
-{
+SKIP: {
+ skip "ActiveState perl produces additional warnings", 3
+ if ($^O eq 'Win32');
+
Film->autoupdate(1);
my $btaste2 = Film->retrieve($btaste->id);
$btaste->NumExplodingSheep(18);
$btaste3->NumExplodingSheep(13);
}
is @warnings, 1, "DESTROY without update warns";
-print join("\n", @warnings);
Film->autoupdate(0);
}