module SimpleCov::Configuration

def minimum_coverage_by_file(coverage = nil)


Default is 0% (disabled)

is below this threshold.
SimpleCov will return non-zero if the current coverage of the least covered file
Defines the minimum coverage per file required for the testsuite to pass.
def minimum_coverage_by_file(coverage = nil)
  @minimum_coverage_by_file ||= (coverage || 0).to_f.round(2)
end