mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
6591e38016
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13975 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
46 lines
770 B
Ruby
46 lines
770 B
Ruby
require 'drbtest'
|
|
|
|
begin
|
|
require 'drb/unix'
|
|
rescue LoadError
|
|
end
|
|
|
|
if Object.const_defined?("UNIXServer")
|
|
|
|
|
|
class DRbUNIXService < DRbService
|
|
%w(ut_drb_drbunix.rb ut_array_drbunix.rb).each do |nm|
|
|
add_service_command(nm)
|
|
end
|
|
|
|
uri = ARGV.shift if $0 == __FILE__
|
|
@server = DRb::DRbServer.new(uri || 'drbunix:', self.manager, {})
|
|
end
|
|
|
|
class TestDRbUNIXCore < Test::Unit::TestCase
|
|
include DRbCore
|
|
def setup
|
|
@ext = DRbUNIXService.ext_service('ut_drb_drbunix.rb')
|
|
@there = @ext.front
|
|
end
|
|
|
|
def test_02_unknown
|
|
end
|
|
|
|
def test_01_02_loop
|
|
end
|
|
|
|
def test_05_eq
|
|
end
|
|
end
|
|
|
|
class TestDRbUNIXAry < Test::Unit::TestCase
|
|
include DRbAry
|
|
def setup
|
|
@ext = DRbUNIXService.ext_service('ut_array_drbunix.rb')
|
|
@there = @ext.front
|
|
end
|
|
end
|
|
|
|
|
|
end
|