From 8559c4c125c6b01549cff9f7ba1eaed9aebf48b2 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 25 May 2014 14:16:02 +0000 Subject: * test/lib/minitest/unit.rb (MiniTest::Assertions#diff): Remove tempfiles. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46118 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/lib/minitest/unit.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test') diff --git a/test/lib/minitest/unit.rb b/test/lib/minitest/unit.rb index c51baf7cf8..7fdbc4b291 100644 --- a/test/lib/minitest/unit.rb +++ b/test/lib/minitest/unit.rb @@ -130,11 +130,16 @@ module MiniTest return "Expected: #{mu_pp exp}\n Actual: #{mu_pp act}" unless need_to_diff + tempfile_a = nil + tempfile_b = nil + Tempfile.open("expect") do |a| + tempfile_a = a a.puts expect a.flush Tempfile.open("butwas") do |b| + tempfile_b = b b.puts butwas b.flush @@ -155,6 +160,9 @@ module MiniTest end result + ensure + tempfile_a.close! if tempfile_a + tempfile_b.close! if tempfile_b end ## -- cgit v1.2.3