in reply to Analyzing large Perl code base.
Devel::Cover is a great tool for code exploration in combination with tests.
Write an end-to-end test for a bit of functionality. Run it under Devel::Cover. Look at the coverage report to see which chunk of your big ball of mud was related to the task. Refactor that chunk.
Repeat for the next bit of functionality.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Analyzing large Perl code base.
by spurperl (Priest) on Apr 15, 2005 at 15:03 UTC | |
by adrianh (Chancellor) on Apr 15, 2005 at 15:59 UTC |