in reply to Test::More is_deeply and binary data
Digging around in the source, it appears that setting the global $^C (aka $COMPILING) will suppress the diagnostic printing. So you could do this:
sub is_deeply_quiet { local $^C=1; is_deeply(@_); }
...and call it instead. I have no idea though, if that creates other undesirable side effects.
|
|---|