summaryrefslogtreecommitdiff
path: root/jni/ruby/test/drb/ut_eq.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/drb/ut_eq.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/drb/ut_eq.rb')
-rw-r--r--jni/ruby/test/drb/ut_eq.rb36
1 files changed, 36 insertions, 0 deletions
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} <uri> <name>" 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
+