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

add method DRbService.ext_service

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2005-01-01 16:20:35 +00:00
parent 571aa4db39
commit b7e70f0497
4 changed files with 29 additions and 16 deletions

View file

@ -36,7 +36,7 @@ end
class TestDRbSSLCore < Test::Unit::TestCase
include DRbCore
def setup
@ext = DRbSSLService.manager.service('ut_drb_drbssl.rb')
@ext = DRbSSLService.ext_service('ut_drb_drbssl.rb')
@there = @ext.front
end
@ -65,7 +65,7 @@ end
class TestDRbSSLAry < Test::Unit::TestCase
include DRbAry
def setup
@ext = DRbSSLService.manager.service('ut_array_drbssl.rb')
@ext = DRbSSLService.ext_service('ut_array_drbssl.rb')
@there = @ext.front
end
end