in reply to How do I detect what modules are not being used?
If you have a good test suite, one approach you could take is to outcomment a use Module; of which you think is not in use, and run the test suite. But that only works if your test suite covers all paths. And, due to the way the modules work, outcommenting use strict; and use Memoize; won't show any failures.
|
|---|