class Covered::Base
def accept?(path)
def accept?(path) true end
def add(coverage)
def add(coverage) end
def clear
def clear end
def each
@yields {|coverage| ...}
Enumerate the coverage data.
def each end
def expand_path(path)
def expand_path(path) path end
def finish
def finish end
def mark(path, lineno, value)
def mark(path, lineno, value) end
def relative_path(path)
def relative_path(path) path end
def start
def start end