module SimpleCov::ResultMerger
def results
All results that are above the SimpleCov.merge_timeout will be
of SimpleCov::Result from that.
Gets the resultset hash and re-creates all included instances
def results results = [] resultset.each do |command_name, data| result = SimpleCov::Result.from_hash(command_name => data) # Only add result if the timeout is above the configured threshold results << result if (Time.now - result.created_at) < SimpleCov.merge_timeout end results end