class SimpleCov::Configuration::CoverageCriterion

def exact(percent)

Pin coverage to an exact figure (sets both `minimum` and `maximum`).
def exact(percent)
  minimum(percent)
  maximum(percent)
end