summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
author(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 03:39:43 +0000
committer(no author) <(no author)@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-15 03:39:43 +0000
commit11e36bee8f55b8c822bc3b1c2f9e7d65660c786d (patch)
treea3f9994b37ceed9e24a1bdb0920abd7d7ed11d17 /test
parent4692554a8768a7b4ffc6b72ad221e54e0ae4b551 (diff)
This commit was manufactured by cvs2svn to create branch 'ruby_1_8'.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
new file mode 100644
index 0000000000..3c258f9894
--- /dev/null
+++ b/test/ruby/test_process.rb
@@ -0,0 +1,13 @@
+require 'test/unit'
+
+class TestProcess < Test::Unit::TestCase
+ def test_rlimit
+ begin
+ Process.getrlimit
+ rescue NotImplementedError
+ assert_raise(NotImplementedError) { Process.setrlimit }
+ rescue ArgumentError
+ assert_raise(ArgumentError) { Process.setrlimit }
+ end
+ end
+end