diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-24 07:11:35 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-24 07:11:35 +0000 |
| commit | 523f8308ea3446d6c40965446abf9f53ea862d6f (patch) | |
| tree | 39f5a539086b34c192b60d3a0589fe6fa3094746 /test/pathname | |
| parent | d1f87f56844f5aed054eba0e6b2403e290f33626 (diff) | |
| download | ruby-523f8308ea3446d6c40965446abf9f53ea862d6f.tar.gz ruby-523f8308ea3446d6c40965446abf9f53ea862d6f.tar.xz ruby-523f8308ea3446d6c40965446abf9f53ea862d6f.zip | |
specify prefix for Dir.mktmpdir.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13765 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/pathname')
| -rw-r--r-- | test/pathname/test_pathname.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 9bc780f6d..4c9c9e1e5 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -287,7 +287,7 @@ class TestPathname < Test::Unit::TestCase return rescue TypeError end - Dir.mktmpdir {|dir| + Dir.mktmpdir('rubytest-pathname') {|dir| File.symlink("not-exist-target", "#{dir}/not-exist") assert_raise(Errno::ENOENT) { realpath("#{dir}/not-exist") } File.symlink("loop", "#{dir}/loop") |
