Is there something equivalent to Sonar for Perl ?

link|improve this question

69% accept rate
feedback

1 Answer

up vote 8 down vote accepted

Smolder is a continuous integration framework that runs smoke tests and produces coverage reports, stats, and nice graphs. It accepts TAP input, so anything that can provide this can be plugged in. You can use the various TAP modules to provide integration on the Perl side.

You can also adapt off-the-shelf build systems. Hudson, Cruise Control and BuildBot can all be configured for Perl projects, although feature support will vary (Hudson is a little Java-centric). You can plug them together in different ways. For example, TAP::Harness::JUnit produces JUnit-like output, which can be fed to your tools.

There's also the Devel::Cover module which points out areas of untested code.

Here's an interesting discussion of code coverage in Perl.

link|improve this answer
1  
A small correction: Smolder doesn't actually run your tests (you set that up on your own), but it's really pretty easy to setup. – mpeters Sep 14 '09 at 21:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.