summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-06 00:02:01 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-06 00:02:01 +0000
commit4500a5207da7b626f8c568afcaaa731d1cecd4d0 (patch)
tree73c426fc53a174e3a99a0bfe6e62c3db95dd5858 /test
parent786e7aba7fcc1fbce5b4f8bacacf1fd008b8341f (diff)
File#lchmod test removed because the method is not exist.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_file_exhaustive.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ruby/test_file_exhaustive.rb b/test/ruby/test_file_exhaustive.rb
index d29253fa76..310f694ee4 100644
--- a/test/ruby/test_file_exhaustive.rb
+++ b/test/ruby/test_file_exhaustive.rb
@@ -309,8 +309,6 @@ class TestFileExhaustive < Test::Unit::TestCase
return if /(mswin|bccwin|mingw|emx)/ =~ RUBY_PLATFORM
assert_equal(1, File.lchmod(0444, @file))
assert_equal(0444, File.stat(@file).mode % 01000)
- assert_equal(0, File.new(@file).lchmod(0222))
- assert_equal(0222, File.stat(@file).mode % 01000)
File.lchmod(0600, @file)
assert_raise(Errno::ENOENT) { File.lchmod(0600, @nofile) }
rescue NotImplementedError