module Minitest::Assertions

def refute_path_exists path, msg = nil

def refute_path_exists path, msg = nil
  msg = message(msg) { "Expected path '#{path}' to not exist" }
  refute File.exist?(path), msg
end