Sha256: 48abe11b47249f0b8e0b5669445317f0def254b65e3d58b423cd97914a0ea891

Contents?: true

Size: 1.28 KB

Versions: 49

Compression:

Stored size: 1.28 KB

Contents

describe :net_httpheader_each_header, :shared => true do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
    @headers["My-Header"] = "test"
    @headers.add_field("My-Other-Header", "a")
    @headers.add_field("My-Other-Header", "b")
  end

  describe "when passed a block" do
    it "yields each header entry to the passed block (keys in lower case, values joined)" do
      res = []
      @headers.send(@method) do |key, value|
        res << [key, value]
      end
      res.should == [["my-header", "test"], ["my-other-header", "a, b"]]
    end
  end

  describe "when passed no block" do
    ruby_version_is "" ... "1.8.7" do
      it "raises a LocalJumpError" do
        lambda { @headers.send(@method) }.should raise_error(LocalJumpError)
      end
    end

    # TODO: This should return an Enumerator and not raise an Error
    ruby_version_is "1.8.7" do
      ruby_bug "http://redmine.ruby-lang.org/issues/show/447", "1.8.7" do
        it "returns an Enumerator" do
          enumerator = @headers.send(@method)
          enumerator.should be_an_instance_of(enumerator_class)

          res = []
          enumerator.each do |*key|
            res << key
          end
          res.should == [["my-header", "test"], ["my-other-header", "a, b"]]
        end
      end
    end
  end
end

Version data entries

49 entries across 49 versions & 2 rubygems

Version Path
rhodes-7.6.0 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/http/httpheader/shared/each_header.rb