Subject: | Test failures with newer perls |
Class-Void's test failures with newer perls (5.8.9-tobe and 5.10.0) are
very probably caused by this change in perl:
[ 30383]
Subject: [PATCH blead] Re: [perl #41546] perl 5.8.x bug: overloaded
'eq' does not work with 'nomethod'
Message-ID: <20070221215316.GF5646@bort.ca>
It seems that you have to need either a special rule for the "eq"
method, or re-write the test as
sub is_empty_string($) {
my $s = shift;
return 1 if "$s" eq "";
return
}
Regards,
Slaven