module SimpleCov::Configuration

def coverage_path


values. Will create the directory if it's missing
and SimpleCov.coverage_dir, so you can adjust this by configuring those
Returns the full path to the output directory using SimpleCov.root
def coverage_path
  coverage_path = File.join(root, coverage_dir)
  system "mkdir -p '#{coverage_path}'"
  coverage_path
end