1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/fileutils/test_fileutils.rb: clean up temporaly symlink. [ruby-dev:21420]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4619 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2003-09-29 07:11:50 +00:00
parent ee299ab2ef
commit 6d582bf22e
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
Mon Sep 29 16:11:23 2003 Minero Aoki <aamine@loveruby.net>
* test/fileutils/test_fileutils.rb: clean up temporaly symlink.
[ruby-dev:21420]
Mon Sep 29 11:16:55 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_thread_atfork): wrong format specifier.

View file

@ -15,13 +15,13 @@ end
def have_symlink?
begin
File.symlink 'not_exist', 'not_exist_2'
File.symlink 'not_exist', 'symlink_test'
return true
rescue NotImplementedError
return false
rescue
return true
ensure
File.unlink 'symlink_test' if File.symlink?('symlink_test')
end
true # never reach
end