I used to use Heckle, but it is incompatible with ruby 1.9 because of issues with ParseTree. I've looked for alternatives, but the only thing that looked promising was Chaser, and that did not have any clear documentation that I could use to see if I could make it work with RSpec. It seems to have Test::Unit dependencies.

So - is anyone out there using any cool tools to really check the quality of your tests?

Alternatively - are there any coverage tools that provide better than c0 coverage? This would kind of help solve the same problem. I'm using cover_me at the moment, but it is c0, like rcov.

link|improve this question

33% accept rate
feedback

2 Answers

Have you looked into the Mutant gem?

It works with Rspec, and currently runs on Rubinius, but depending on how complex your project is, that might not be a deal breaker.

There is a nice tutorial here

$ rvm install rbx-head
$ rvm use rbx-head
$ gem install mutant

$ mutate "YourClass#method_to_mess_with" your_class_spec.rb
link|improve this answer
feedback

Chaser also works with a mutation testing framework exemplor: exemplor-chaser.

Unfortunately, the creator of chaser has the attention span of a goldfish and isn't maintaining it any more. He's kind of interested in mutant, and also in seeing if heckle can be modified to use ruby_parser rather than ParseTree.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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