diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-06 00:02:01 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-06 00:02:01 +0000 |
commit | e180640d13f5da7ca264e4cf2d1a809933c70b0d (patch) | |
tree | 73c426fc53a174e3a99a0bfe6e62c3db95dd5858 | |
parent | 77ffa600086088f8f9b726e8f15cd83f2ea61d2c (diff) | |
download | ruby-e180640d13f5da7ca264e4cf2d1a809933c70b0d.tar.gz ruby-e180640d13f5da7ca264e4cf2d1a809933c70b0d.tar.xz ruby-e180640d13f5da7ca264e4cf2d1a809933c70b0d.zip |
File#lchmod test removed because the method is not exist.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/ruby/test_file_exhaustive.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ruby/test_file_exhaustive.rb b/test/ruby/test_file_exhaustive.rb index d29253fa7..310f694ee 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 |