class Covered::Root
def accept?(path)
def accept?(path) path.start_with?(@path) end
def expand_path(path)
def expand_path(path) File.expand_path(super, @path) end
def initialize(output, path)
def initialize(output, path) super(output) @path = path end
def relative_path(path)
def relative_path(path) if path.start_with?(@path) path[@path.size+1..-1] else super end end