Skip Menu |

This queue is for tickets about the DBI CPAN distribution.

Report information
The Basics
Id: 15625
Status: resolved
Priority: 0/
Queue: DBI

People
Owner: Nobody in particular
Requestors: gisle [...] ActiveState.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: $dbh->{AutoCommit} is not a good test name
There seems to be a mistake in 10examp.t. Since all the other calls to ok() only pass 1 argument this one (see attached patch) should as well. Patch relative to DBI-1.48.
--- t/10examp.t.orig 2005-03-14 15:17:12.000000000 +0100 +++ t/10examp.t 2005-11-08 13:29:26.000000000 +0100 @@ -494,7 +494,7 @@ ok(!$dbh->{BegunWork}); ok($dbh->begin_work); -ok(!$dbh->{AutoCommit}, $dbh->{AutoCommit}); +ok(!$dbh->{AutoCommit}); ok($dbh->{BegunWork}); $dbh->commit;
Applied. Thanks!