Sha256: 0cfccab53d00de3c41b72d8f543373e8dca9cca1ef6ea9ecd9fd13663ca09649

Contents?: true

Size: 1.24 KB

Versions: 49

Compression:

Stored size: 1.24 KB

Contents

require File.expand_path('../../../../../spec_helper', __FILE__)
require 'net/http'
require File.expand_path('../fixtures/classes', __FILE__)

describe "Net::HTTPHeader#[]= when passed key, value" do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  it "sets the header entry with the passed key to the passed value" do
    @headers["My-Header"] = "test"
    @headers["My-Header"].should == "test"

    @headers["My-Header"] = "overwritten"
    @headers["My-Header"].should == "overwritten"

    @headers["My-Other-Header"] = "another test"
    @headers["My-Other-Header"].should == "another test"
  end

  it "is case-insensitive" do
    @headers['My-Header'] = "test"
    @headers['my-Header'] = "another test"
    @headers['My-header'] = "and one more test"
    @headers['my-header'] = "and another one"
    @headers['MY-HEADER'] = "last one"

    @headers["My-Header"].should == "last one"
    @headers.size.should eql(1)
  end

  it "removes the header entry with the passed key when the value is false or nil" do
    @headers['My-Header'] = "test"
    @headers['My-Header'] = nil
    @headers['My-Header'].should be_nil

    @headers['My-Header'] = "test"
    @headers['My-Header'] = false
    @headers['My-Header'].should be_nil
  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/element_set_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_set_spec.rb