On Thu Oct 23 15:45:44 2008, SREZIC wrote:
Show quoted text> See the subject. With an older Test::More and the same perl 5.8.8
> everything works ok. It seems that there is an issue with new_ok.
>
> Regards,
> Slaven
With Test::More 0.86 I was getting:
Subroutine main::new_ok redefined at t/02_practical.t line 42
Test::More's EXPORT now contains new_ok.
I renamed main::new_ok to main::my_new_ok in t/02_practical.t
perl -p -i.bak -e 's/new_ok/my_new_ok/g' t/02_practical.t
The test now passes.