From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/drb/ut_eq.rb | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 jni/ruby/test/drb/ut_eq.rb (limited to 'jni/ruby/test/drb/ut_eq.rb') diff --git a/jni/ruby/test/drb/ut_eq.rb b/jni/ruby/test/drb/ut_eq.rb new file mode 100644 index 0000000..cc86158 --- /dev/null +++ b/jni/ruby/test/drb/ut_eq.rb @@ -0,0 +1,36 @@ +require 'drb/drb' +require 'drb/extserv' + +module DRbTests + +class Foo + include DRbUndumped +end + +class Bar + include DRbUndumped + def initialize + @foo = Foo.new + end + attr_reader :foo + + def foo?(foo) + @foo == foo + end +end + +end + +if __FILE__ == $0 + def ARGV.shift + it = super() + raise "usage: #{$0} " unless it + it + end + + DRb.start_service('druby://localhost:0', DRbTests::Bar.new) + es = DRb::ExtServ.new(ARGV.shift, ARGV.shift) + DRb.thread.join + es.stop_service if es.alive? +end + -- cgit v1.2.3