summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-13 05:46:38 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-09-13 05:46:38 +0000
commit98697d36171a97854458caa78417ab26dc1af83e (patch)
treed8e30bf2124cb8e3bc1cd118a60e80172e894390
parent60f545e2ac740677ceab64cf897acb09bbd48caf (diff)
make tempfile prefix more descriptive.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24893 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--test/ruby/test_argf.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/ruby/test_argf.rb b/test/ruby/test_argf.rb
index 6f6622e66b..bdfd4cc6da 100644
--- a/test/ruby/test_argf.rb
+++ b/test/ruby/test_argf.rb
@@ -6,17 +6,17 @@ require_relative 'envutil'
class TestArgf < Test::Unit::TestCase
def setup
- @t1 = Tempfile.new("foo")
+ @t1 = Tempfile.new("argf-foo")
@t1.binmode
@t1.puts "1"
@t1.puts "2"
@t1.close
- @t2 = Tempfile.new("bar")
+ @t2 = Tempfile.new("argf-bar")
@t2.binmode
@t2.puts "3"
@t2.puts "4"
@t2.close
- @t3 = Tempfile.new("baz")
+ @t3 = Tempfile.new("argf-baz")
@t3.binmode
@t3.puts "5"
@t3.puts "6"
@@ -32,7 +32,7 @@ class TestArgf < Test::Unit::TestCase
end
def make_tempfile
- t = Tempfile.new("foo")
+ t = Tempfile.new("argf-foo")
t.puts "foo"
t.puts "bar"
t.puts "baz"
@@ -414,11 +414,11 @@ class TestArgf < Test::Unit::TestCase
end
end
- t1 = Tempfile.new("foo")
+ t1 = Tempfile.new("argf-foo")
t1.binmode
t1.puts "foo"
t1.close
- t2 = Tempfile.new("bar")
+ t2 = Tempfile.new("argf-bar")
t2.binmode
t2.puts "bar"
t2.close