aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathname
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-16 06:05:55 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-16 06:05:55 +0000
commit2e1d21f53c2f45f1773c8bb246e0de086f803170 (patch)
treef2b04360c7280e1ea0bba17c180ed5862b24353b /test/pathname
parent72191a0acd84784184d20592ed8aba8ce91f911e (diff)
downloadruby-2e1d21f53c2f45f1773c8bb246e0de086f803170.tar.gz
* test/pathname/test_pathname.rb: use File.exist? instead of File.exists?
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44999 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 ec9dfa1d59..8008e8c0af 100644
--- a/test/pathname/test_pathname.rb
+++ b/test/pathname/test_pathname.rb
@@ -1222,7 +1222,7 @@ class TestPathname < Test::Unit::TestCase
Pathname("d").mkdir
assert(File.directory?("d"))
Pathname("d").rmdir
- assert(!File.exists?("d"))
+ assert(!File.exist?("d"))
}
end