aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathname
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-29 01:25:07 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-08-29 01:25:07 +0000
commit8879d73ffdb21118db48f2a8c4f67c95000e871a (patch)
tree00f27f8cf68339822ea7468557d986393c709910 /test/pathname
parent754b3342fe3660a14b90c7514312fcfbb45dcc29 (diff)
downloadruby-8879d73ffdb21118db48f2a8c4f67c95000e871a.tar.gz
test: try File.symlink with invalid paths
* test (have_symlink?): try File.symlink with invalid paths to test the administrator privilege, nil just raises an ArgumentError before trying the actual API. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/pathname')
-rw-r--r--test/pathname/test_pathname.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb
index 4842f96d0f..2917ebb557 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -339,7 +339,7 @@ class TestPathname < Test::Unit::TestCase
def has_symlink?
begin
- File.symlink(nil, nil)
+ File.symlink("", "")
rescue NotImplementedError, Errno::EACCES
return false
rescue TypeError