class Covered::Wrapper
def accept?(path)
def accept?(path) @output.accept?(path) end
def disable
def disable @output.disable end
def each(&block)
- Yield: - the path to the file, and the execution counts.
def each(&block) @output.each(&block) end
def enable
def enable @output.enable end
def expand_path(path)
def expand_path(path) @output.expand_path(path) 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 to_h
def to_h @output.to_enum(:each).collect{|coverage| [coverage.path, coverage]}.to_h end