in reply to Problem when Test::Deep and Test::Class are used together
This is happening because Test::Deep defines it's own isa() subroutine, which has different functionality from the UNIVERSAL::isa.
This means that when runtests() is doing it's automagical "find all test classes" using Test::Deep->isa('Test::Class') it always get a true value - so incorrectly treats it as a Test::Class.
Expect a patched Test::Class soon :-)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Problem when Test::Deep and Test::Class are used together
by fergal (Chaplain) on Apr 23, 2006 at 22:07 UTC | |
by adrianh (Chancellor) on Apr 24, 2006 at 13:25 UTC |