module SimpleCov::Configuration

def minimum_coverage(coverage = nil)


Default is 0% (disabled)

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