in reply to Re: Replace 'no_plan' with fixed number using Test::More when output is random
in thread Replace 'no_plan' with fixed number using Test::More when output is random
use Test::More; my @items = qw(Foo Bar Baz); # new plugins here, no change to test pla +n plan tests => scalar @items; foreach my $plugin (@items) { use_ok "My::Module::Plugin::$plugin"; }
|
|---|