# File lib/test/unit/assertions.rb, line 1263 def assert_path_not_exist(path, message=nil) _wrap_assertion do failure_message = build_message(message, "<?> expected to not exist", path) assert_block(failure_message) do not File.exist?(path) end end end