There are patches in the archives for this and a couple of other bugs but
they were submitted along with another change that wasn't acceptable so they
were never applied. A search for is_deeply should find the patches and a
long argument,
F
On Wed, Jun 30, 2004 at 09:12:45AM -0400, Geoffrey Young wrote:
> hi all
>
> I'm not sure if this is the proper forum for reporting Test::More bugs, but
> I know some of the interested parties are listening :)
>
> use Test::More tests => 2;
>
>
> is(undef,undef);
> is_deeply([undef],[undef]);
>
>
> # both of these should fail
> is('',undef); # this fails
> is_deeply([''],[undef]); # this does not
>
> --Geoff