Getting rid of more seemingly dead code
diff --git a/src/ruby/spec/completion_queue_spec.rb b/src/ruby/spec/completion_queue_spec.rb
index 11d4e99..886a7f2 100644
--- a/src/ruby/spec/completion_queue_spec.rb
+++ b/src/ruby/spec/completion_queue_spec.rb
@@ -39,36 +39,4 @@
       expect { GRPC::Core::CompletionQueue.new }.not_to raise_error
     end
   end
-
-  describe '#next' do
-    it 'can be called without failing' do
-      expect { @cq.next(3) }.not_to raise_error
-    end
-
-    it 'can be called with a time constant' do
-      # don't use INFINITE_FUTURE, as are no events and this blocks.
-      #
-      # don't use INFINITE_PAST, as this fails on docker, and does not need to
-      # be tested, as its not used anywhere in the ruby implementation
-      a_time = GRPC::Core::TimeConsts::ZERO
-      expect { @cq.next(a_time) }.not_to raise_error
-    end
-  end
-
-  describe '#pluck' do
-    it 'can be called without failing' do
-      tag = Object.new
-      expect { @cq.pluck(tag, 3) }.not_to raise_error
-    end
-
-    it 'can be called with a time constant' do
-      # don't use INFINITE_FUTURE, as there no events and this blocks.
-      #
-      # don't use INFINITE_PAST, as this fails on docker, and does not need to
-      # be tested, as its not used anywhere in the ruby implementation
-      tag = Object.new
-      a_time = GRPC::Core::TimeConsts::ZERO
-      expect { @cq.pluck(tag, a_time) }.not_to raise_error
-    end
-  end
 end