NAME

Test::UsedModules - Detects needless modules which are being used in your module

VERSION

This document describes Test::UsedModules version 0.03

SYNOPSIS

# check all of modules that are listed in MANIFEST
use Test::More;
use Test::UsedModules;
all_used_modules_ok();
done_testing;

# you can also specify individual file
use Test::More;
use Test::UsedModules;
used_modules_ok('/path/to/your/module_or_script');
done_testing;

DESCRIPTION

Test::UsedModules finds needless modules which are being used in your module to clean up the source code. Used modules (it means modules are used by 'use', 'require' or 'load (from Module::Load)' in target) will be checked by this module.

METHODS

DEPENDENCIES

KNOWN PROBLEMS

LICENSE

Copyright (C) moznion.

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

AUTHOR

moznion moznion@gmail.com