1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

use DRbService.ext_service. reduce sleep

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2005-01-04 12:25:45 +00:00
parent 1b27958bfb
commit 940aa83194
4 changed files with 8 additions and 26 deletions

View file

@ -20,7 +20,7 @@ end
class TestDRbUNIXCore < Test::Unit::TestCase
include DRbCore
def setup
@ext = DRbUNIXService.manager.service('ut_drb_drbunix.rb')
@ext = DRbUNIXService.ext_service('ut_drb_drbunix.rb')
@there = @ext.front
end
@ -32,23 +32,12 @@ class TestDRbUNIXCore < Test::Unit::TestCase
def test_05_eq
end
def test_06_timeout
ten = Onecky.new(3)
assert_raises(TimeoutError) do
@there.do_timeout(ten)
end
assert_raises(TimeoutError) do
@there.do_timeout(ten)
end
sleep 3
end
end
class TestDRbUNIXAry < Test::Unit::TestCase
include DRbAry
def setup
@ext = DRbUNIXService.manager.service('ut_array_drbunix.rb')
@ext = DRbUNIXService.ext_service('ut_array_drbunix.rb')
@there = @ext.front
end
end