Subject: | verbose() setter method does not work |
At least with perl 5.14.2 I was not able to change the verbosity of a Test::Cmd object after its construction. Maybe the assignment inside the verbose() method should be changed from
$self->{'verbose'} = $_;
to
$self->{'verbose'} = $_[0];