Method: Minitest::Assertions#assert_path_exists
- Defined in:
- lib/minitest/assertions.rb
permalink #assert_path_exists(path, msg = nil) ⇒ Object
Fails unless path
exists.
357 358 359 360 |
# File 'lib/minitest/assertions.rb', line 357 def assert_path_exists path, msg = nil msg = (msg) { "Expected path '#{path}' to exist" } assert File.exist?(path), msg end |