module Minitest::Assertions

def assert_path_exists path, msg = nil

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