class Covered::Wrapper

def accept?(path)

def accept?(path)
	@output.accept?(path)
end

def add(coverage)

def add(coverage)
	@output.add(coverage)
end

def clear

def clear
	@output.clear
end

def each(&block)

Other tags:
    Yield: - the path to the file, and the execution counts.
def each(&block)
	@output.each(&block)
end

def expand_path(path)

def expand_path(path)
	@output.expand_path(path)
end

def finish

def finish
	@output.finish
end

def initialize(output = Base.new)

def initialize(output = Base.new)
	@output = output
end

def mark(path, lineno, value)

def mark(path, lineno, value)
	@output.mark(path, lineno, value)
end

def relative_path(path)

def relative_path(path)
	@output.relative_path(path)
end

def start

def start
	@output.start
end

def to_h

def to_h
	to_enum(:each).collect{|coverage| [coverage.path, coverage]}.to_h
end