Method: SimpleCov::Configuration#track_files

Defined in:
lib/simplecov/configuration.rb

#track_files(glob) ⇒ Object

Coverage results will always include files matched by this glob, whether or not they were explicitly required. Without this, un-required files will not be present in the final report.



59
60
61
# File 'lib/simplecov/configuration.rb', line 59

def track_files(glob)
  @tracked_files = glob
end