class Covered::Persist

def each(&block)

def each(&block)
	return to_enum unless block_given?
	
	@output.clear
	self.load!
	
	super
end