class Covered::Config

def self.path(root)

@returns [String | Nil] The expanded configuration path if it exists.
@parameter root [String] The project root.
The coverage configuration path under the given root.
def self.path(root)
	path = ::File.expand_path(PATH, root)
	
	if ::File.exist?(path)
		return path
	end
end