# Covered [![Development Status](https://github.com/ioquatix/covered/workflows/Test/badge.svg)](https://github.com/ioquatix/covered/actions?workflow=Test) 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. ![Screenshot](media/example.png) ## 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](https://github.com/whitequark/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`: ``` ruby gem 'covered' ``` ### RSpec Integration In your `spec/spec_helper.rb` add the following before loading any other code: ``` ruby 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: ``` ruby require 'covered/minitest' require 'minitest/autorun' ``` In your test files, e.g. `test/dummy_test.rb` add the following at the top: ``` ruby 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](https://github.com/lemurheavy/coveralls-ruby) – the official Coveralls implementation for Ruby. - [simplecov](https://github.com/colszowka/simplecov) – one of the original coverage implementations for Ruby, uses the built-in `coverage` library. ## Contributing We welcome contributions to this project. 1. Fork it. 2. Create your feature branch (`git checkout -b my-new-feature`). 3. Commit your changes (`git commit -am 'Add some feature'`). 4. Push to the branch (`git push origin my-new-feature`). 5. Create new Pull Request. ### Developer Certificate of Origin This project uses the [Developer Certificate of Origin](https://developercertificate.org/). All contributors to this project must agree to this document to have their contributions accepted. ### Contributor Covenant This project is governed by [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.