class Covered::Root

def match?(path)

@returns [Boolean] Whether the path starts with this root.
@parameter path [String] The source path.
Whether the given path is under this root.
def match?(path)
	path.start_with?(@path)
end