1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/drb/ignore_test_drb.rb
seki 5ef141e3e9 move TestDRbReusePort to new file [ruby-dev:25238]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7712 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-01-03 02:07:37 +00:00

24 lines
371 B
Ruby

require 'drbtest'
class TestDRbReusePort < Test::Unit::TestCase
include DRbAry
def setup
@ext = DRbService.ext_service('ut_port.rb')
@there = @ext.front
end
def teardown
return unless @ext
@ext.stop_service
while true
sleep 0.1
begin
@ext.alive?
rescue DRb::DRbConnError
break
end
end
end
end