class Covered::Wrapper

def disable

def disable
	@output.disable if @output
end

def each(&block)

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

def enable

def enable
	@output.enable if @output
end

def initialize(output = nil)

def initialize(output = nil)
	@output = output
end

def mark(*args)

def mark(*args)
	@output.mark(*args) if @output
end

def to_h

def to_h
	collect{|coverage| [coverage.path, coverage]}.to_h
end