Test::Most


Test::Most by Curtis "Ovid" Poe is a replacement of Test::More with even more stuff. It exports the functions of the following test modules making it a bit more convenient to use them.

It also provides a nice set of extra features such as the die_on_fail; and bail_on_fail calls.


examples/test-perl/t/test_most.t
use strict;
use warnings;

use Test::Most tests => 3;

ok 1;
ok 0;
ok 1;

prove examples/test-perl/t/test_most.t
DIE_ON_FAIL=1 prove examples/test-perl/t/test_most.t
BAIL_ON_FAIL=1 prove examples/test-perl/t/test_most.t