class Covered::Persist

def initialize(output, path = DEFAULT_PATH)

@parameter path [String] The coverage database path.
@parameter output [Covered::Base] The output to wrap.
Initialize persistence for the given output and database path.
def initialize(output, path = DEFAULT_PATH)
	super(output)
	
	@path = self.expand_path(path)
end