The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

NAME

Test::LoadAllModules - do use_ok for modules in search path

SYNOPSIS

# basic
BEGIN {
all_uses_ok(search_path => 'MyApp');
}
# exclude some classes
BEGIN {
all_uses_ok(
search_path => 'MyApp',
except => [
'MyApp::Role',
qr/MyApp::Exclude::.*/,
]
);
}
# set @INC with lib parm
BEGIN {
all_uses_ok(
search_path => 'MyApp',
lib => [
'lib',
't/lib',
]
);
}

DESCRIPTION

Test::LoadAllModules do use_ok for modules in search_path.

EXPORTED FUNCTIONS

all_uses_ok

Does Test::More's use_ok() for every modules found in search path.

AUTHOR

Takatoshi Kitano <kitano.tk@gmail.com>

SEE ALSO

Test::More

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.