For me, the following code:
Just prints
Test::More will not print the plan if you do not report it. This is done by passing args to its import:
use Test::More tests => 30;
Or by calling the plan directly.
use Test::More; plan(tests => 30);
source share