class Covered::Coverage

def to_s

@returns [String] A summary including the source path and percentage.
A human-readable representation of this coverage object.
def to_s
	"\#<#{self.class} path=#{self.path} #{self.percentage.to_f.round(2)}% covered>"
end