Remember Rcov?
Rcov helps to identify code that is not being being hit by your tests (or maybe some functions left behind after refactoring). It’s very easy to get it running as well: [ccN] $ sudo gem install rcov [/ccN] Plug this rake task into /lib/tasks/rcov.rake [ccN_ruby] require ‘rcov/rcovtask’ namespace :rcov do desc ‘Measures test coverage using [...]