# File lib/kwala/actions/code_coverage.rb, line 206
  def parse_coverage_file(file)
    if File.exists?(file) and (match = REGEXP.match(File.read(file)))
      match[2].to_i
    else
      0
    end
  end