зеркало из https://github.com/github/ruby.git
new file.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
919d775dfb
Коммит
511626799f
|
@ -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
|
Загрузка…
Ссылка в новой задаче