about summary refs log tree commit homepage
path: root/test/test_posix_mq.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_posix_mq.rb')
-rw-r--r--test/test_posix_mq.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_posix_mq.rb b/test/test_posix_mq.rb
index 42be59a..fa98a9c 100644
--- a/test/test_posix_mq.rb
+++ b/test/test_posix_mq.rb
@@ -27,6 +27,14 @@ class Test_POSIX_MQ < Test::Unit::TestCase
     assert @mq.closed?
   end
 
+  def test_dup_clone
+    @mq = POSIX_MQ.new(@path, :rw)
+    dup = @mq.dup
+    assert_equal @mq.object_id, dup.object_id
+    clone = @mq.clone
+    assert_equal @mq.object_id, clone.object_id
+  end
+
   def test_timed_receive
     interval = 0.01
     @mq = POSIX_MQ.new(@path, :rw)