summaryrefslogtreecommitdiffstats
path: root/test/rinda
diff options
context:
space:
mode:
authorseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-16 05:43:19 +0000
committerseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-16 05:43:19 +0000
commita1aae38243d99d55af774eb426a2aa6018962f4d (patch)
tree94cf98d22e19e7484a25c65b769f683ee645e671 /test/rinda
parent9bc0ddb74e207ce3c6cfd6ddfd0c4df11f69bb02 (diff)
downloadruby-a1aae38243d99d55af774eb426a2aa6018962f4d.tar.gz
ruby-a1aae38243d99d55af774eb426a2aa6018962f4d.tar.xz
ruby-a1aae38243d99d55af774eb426a2aa6018962f4d.zip
check remote hash tuple
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rinda')
-rw-r--r--test/rinda/test_rinda.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/rinda/test_rinda.rb b/test/rinda/test_rinda.rb
index 86e161e0c..d663e0446 100644
--- a/test/rinda/test_rinda.rb
+++ b/test/rinda/test_rinda.rb
@@ -510,6 +510,14 @@ class TupleSpaceProxyTest < Test::Unit::TestCase
@ts = Rinda::TupleSpaceProxy.new(@ts_base)
end
+ def test_remote_array_and_hash
+ @ts.write(DRbObject.new([1, 2, 3]))
+ assert_equal([1, 2, 3], @ts.take([1, 2, 3], 0))
+ @ts.write(DRbObject.new({'head' => 1, 'tail' => 2}))
+ assert_equal({'head' => 1, 'tail' => 2},
+ @ts.take({'head' => 1, 'tail' => 2}, 0))
+ end
+
@server = DRb.primary_server || DRb.start_service
end