module SimpleCov::ResultMerger

def resultset

Loads the cached resultset from YAML and returns it as a Hash
def resultset
  return {} unless File.exist?(resultset_path)
  YAML.load(File.read(resultset_path)) || {}
end