module SimpleCov::UselessResultsRemover
Select the files that related to working scope directory of SimpleCov
Public Class Methods
call(coverage_result)
click to toggle source
# File lib/simplecov/useless_results_remover.rb, line 8 def self.call(coverage_result) coverage_result.select do |path, _coverage| path =~ root_regx end end
root_regx()
click to toggle source
# File lib/simplecov/useless_results_remover.rb, line 14 def self.root_regx @root_regx ||= /\A#{Regexp.escape(SimpleCov.root + File::SEPARATOR)}/i.freeze end