Subject: | Test::MockObject compatibility |
Causes Test::MockObject to gripe:
# Called UNIVERSAL::can() as a function, not a method at
.../Class/Std.pm line 563
# at.../UNIVERSAL/can.pm line 71
which becomes fatal if you're using Test::No Warnings.
You had fixed this with a patch right before that line:
BEGIN { warnings->unimport( 'UNIVERSAL::can' )
if $warnings::Bits{ 'UNIVERSAL::can' };
}
and I wondered if this was going to make it to CPAN any time soon.