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
