Covered
Covered uses modern Ruby features to generate comprehensive coverage, including support for templates which are compiled into Ruby.
- Incremental coverage - if you run your full test suite, and the run a subset, it will still report the correct coverage - so you can incrementally work on improving coverage.
- Integration with RSpec, Minitest, Travis & Coveralls - no need to configure anything - out of the box support for these platforms.
- Supports coverage of views - templates compiled to Ruby code can be tracked for coverage reporting.
Motivation
Existing Ruby coverage tools are unable to handle eval
ed code. This is because the coverage
module built into Ruby doesn’t expose the necessary hooks to capture it. Using the parser gem allows us to do our own source code analysis to compute executable lines, thus making it possible to compute coverage for “templates”.
It’s still tricky to do it correctly, but it is feasible now to compute coverage of web application “views” by using this technique. This gem is an exploration to see what is possible.
Installation
Add this line to your application’s Gemfile
:
gem 'covered'
RSpec Integration
In your spec/spec_helper.rb
add the following before loading any other code:
require 'covered/rspec'
Ensure that you have a .rspec
file with --require spec_helper
:
–require spec_helper
–format documentation
–warnings
Minitest Integration
In your test/test_helper.rb
add the following before loading any other code:
require 'covered/minitest' require 'minitest/autorun'
In your test files, e.g. test/dummy_test.rb
add the following at the top:
require_relative 'test_helper'
Usage
When running rspec
, you can specify the kind of coverage analysis you would like:
COVERAGE=Summary rspec
If no COVERAGE
is specified, coverage tracking will be finishd.
Template Coverage
Covered supports coverage of templates which are compiled into Ruby code. This is only supported on Ruby 3.2+ due to enhancements in the coverage interface.
Partial Summary
COVERAGE=PartialSummary rspec
This report only shows snippets of source code with incomplete coverage.
Brief Summary
COVERAGE=BriefSummary rspec
This report lists several files in order of least coverage.l
See Also
- coveralls-ruby – the official Coveralls implementation for Ruby.
- simplecov – one of the original coverage implementations for Ruby, uses the built-in
coverage
library.
Contributing
We welcome contributions to this project.
- Fork it.
- Create your feature branch (
git checkout -b my-new-feature
). - Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create new Pull Request.
Developer Certificate of Origin
This project uses the Developer Certificate of Origin. All contributors to this project must agree to this document to have their contributions accepted.
Contributor Covenant
This project is governed by Contributor Covenant. All contributors and participants agree to abide by its terms.