summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/thread/shared/queue/length.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/library/thread/shared/queue/length.rb')
-rw-r--r--spec/rubyspec/library/thread/shared/queue/length.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/rubyspec/library/thread/shared/queue/length.rb b/spec/rubyspec/library/thread/shared/queue/length.rb
deleted file mode 100644
index a0143a4e19..0000000000
--- a/spec/rubyspec/library/thread/shared/queue/length.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-describe :queue_length, shared: true do
- it "returns the number of elements" do
- q = @object.call
- q.send(@method).should == 0
- q << Object.new
- q << Object.new
- q.send(@method).should == 2
- end
-end