class SimpleCov::Result

def self.from_hash(hash)

Loads a SimpleCov::Result#to_hash dump
def self.from_hash(hash)
  hash.map do |command_name, data|
    new(data.fetch("coverage"), command_name: command_name, created_at: Time.at(data["timestamp"]))
  end
end