module PullReview::CoverageReporter

Simple reporter based on SimpleCov’s one

Public Class Methods

start() click to toggle source

start the tracking of coverage

# File lib/pullreview/coverage_reporter.rb, line 7
def self.start
  require 'simplecov'
  ::SimpleCov.formatter = PullReview::Coverage::Formatter
  ::SimpleCov.start
end