diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-04 12:29:55 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-04 12:29:55 +0000 |
commit | 46adb2803d1c3ceeb9083a3238e529d0b5ebc4b5 (patch) | |
tree | ac2477f3fbbb71f54c7de4108ff1d9b37710de07 /test/fileutils | |
parent | eea9a0890eee50f51adca9860b316671d5d1e940 (diff) | |
download | ruby-46adb2803d1c3ceeb9083a3238e529d0b5ebc4b5.tar.gz ruby-46adb2803d1c3ceeb9083a3238e529d0b5ebc4b5.tar.xz ruby-46adb2803d1c3ceeb9083a3238e529d0b5ebc4b5.zip |
* lib/fileutils.rb: (In previous commit) new method chown.
* lib/fileutils.rb: (In previous commit) new method chown_R.
* lib/fileutils.rb: (In previous commit) new method chmod_R wrongly added. Removed now.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/fileutils')
-rw-r--r-- | test/fileutils/test_fileutils.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/fileutils/test_fileutils.rb b/test/fileutils/test_fileutils.rb index 303c1b42a..a10bbe236 100644 --- a/test/fileutils/test_fileutils.rb +++ b/test/fileutils/test_fileutils.rb @@ -739,6 +739,15 @@ end end def test_chmod + # FIXME + end + + def test_chown + # FIXME + end + + def test_chown_R + # FIXME end end |