class Covered::Base
The base coverage output interface.
def accept?(path)
@parameter path [String] The source path.
Whether the given path should be accepted.
def accept?(path) true end
def add(coverage)
Add a coverage object.
def add(coverage) end
def clear
def clear end
def each
@yields {|coverage| ...}
Enumerate the coverage data.
def each end
def expand_path(path)
@parameter path [String] The path to expand.
Expand a path relative to this output.
def expand_path(path) path end
def finish
def finish end
def mark(path, lineno, value)
@parameter lineno [Integer] The starting line number.
@parameter path [String] The source path.
Mark coverage for the given path and line number.
def mark(path, lineno, value) end
def relative_path(path)
@parameter path [String] The source path.
Convert a path to a relative path.
def relative_path(path) path end
def start
def start end