use Test::More; my @items = qw(Foo Bar Baz); # new plugins here, no change to test plan plan tests => scalar @items; foreach my $plugin (@items) { use_ok "My::Module::Plugin::$plugin"; }