class Covered::Root
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 match?(path)
def match?(path) path.start_with?(@path) end
def relative_path(path)
def relative_path(path) if path.start_with?(@path) path.slice(@path.size+1, path.size) else super end end