summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/httpheader/shared/size.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/net/http/httpheader/shared/size.rb')
-rw-r--r--spec/ruby/library/net/http/httpheader/shared/size.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/ruby/library/net/http/httpheader/shared/size.rb b/spec/ruby/library/net/http/httpheader/shared/size.rb
deleted file mode 100644
index e2b1e4c22b..0000000000
--- a/spec/ruby/library/net/http/httpheader/shared/size.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-describe :net_httpheader_size, shared: true do
- before :each do
- @headers = NetHTTPHeaderSpecs::Example.new
- end
-
- it "returns the number of header entries in self" do
- @headers.send(@method).should eql(0)
-
- @headers["a"] = "b"
- @headers.send(@method).should eql(1)
-
- @headers["b"] = "b"
- @headers.send(@method).should eql(2)
-
- @headers["c"] = "c"
- @headers.send(@method).should eql(3)
- end
-end