summaryrefslogtreecommitdiff
path: root/test/ruby/test_argf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_argf.rb')
-rw-r--r--test/ruby/test_argf.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/ruby/test_argf.rb b/test/ruby/test_argf.rb
index 8280e5e506..695b6f2196 100644
--- a/test/ruby/test_argf.rb
+++ b/test/ruby/test_argf.rb
@@ -18,6 +18,14 @@ class TestArgf < Test::Unit::TestCase
@t3.puts "5"
@t3.puts "6"
@t3.close
+ @tmps = [@t1, @t2, @t3]
+ end
+
+ def teardown
+ @tmps.each {|t|
+ bak = t.path + ".bak"
+ File.unlink bak if File.file? bak
+ }
end
def make_tempfile
@@ -26,6 +34,7 @@ class TestArgf < Test::Unit::TestCase
t.puts "bar"
t.puts "baz"
t.close
+ @tmps << t
t
end