Add missing 'end' to test/helper.rb

This commit is contained in:
Parker Moore
2016-05-18 11:31:22 -07:00
committed by Pat Hawks
parent 59346eb228
commit 37b93f10dd

View File

@@ -58,6 +58,7 @@ module Minitest::Assertions
def refute_exist(filename, msg = nil)
msg = message(msg) { "Expected '#{filename}' not to exist" }
refute File.exist?(filename), msg
end
end
module DirectoryHelpers