class Covered::Files

def each

def each
	return to_enum unless block_given?
	
	@paths.each_value do |state|
		yield state.coverage
	end
end