Acme-Test-Buffy
view release on metacpan or search on metacpan
lib/Acme/Test/Buffy.pm view on Meta::CPAN
# return a true value (don't have to do this but it's nice)
return 1;
}
else
{
# We failed. We want to test Test::Builder to print something
# like:
# Failed test at line <line number>
# Expected 'Buffy' but got '<what we got>' instead
# that is to say we print failure first, _then_ the extra diag
# stuff that will help people debug the code better.
# print not okay with the right text ("not ok <number> - <text>")
$Tester->ok(0,$text);
# print diagnostics of *why* it failed. Don't just print to
# STDERR this is bad and wrong as it prevents the test output
# being properly caught. Note the "\n" on the end of the
# line.
$Tester->diag("Expected 'Buffy' but got '$maybe_buffy' instead\n");
( run in 0.491 second using v1.01-cache-2.11-cpan-3cd7ad12f66 )