This feature is supported in Ultimate edition only.
The following is only valid when Ruby Plugin is installed and enabled!
If a test is launched via a Rake task, it is the user's responsibility to provide code coverage measurement.
It is supposed that you have a special Rake task that collects code coverage information via rcov.
- Open for editing your
*.rakefile, and add the following code:require 'rcov/rcovtask' ovTask.new do |t| s << "test" t_files = FileList ['test/**/*_test.rb'] bose = true
- Create run/debug configuration for the task 'rcov' and run it with coverage.
