Method: Minitest::Assertions#assert_path_exists

Defined in:
lib/minitest/assertions.rb

#assert_path_exists(path, msg = nil) ⇒ Object

Fails unless path exists.

[View source]

357
358
359
360
# File 'lib/minitest/assertions.rb', line 357

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