Sha256: 41258cb8633f1ca3aaab2bff9d7758acf6ae9b7e3466aff3e2b061fb71e074d7

Contents?: true

Size: 1.2 KB

Versions: 49

Compression:

Stored size: 1.2 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" do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  it "returns the value of the header entry with the passed key" do
    @headers["My-Header"] = "test"
    @headers["My-Header"].should == "test"
    @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'].should == "test"
    @headers['my-Header'].should == "test"
    @headers['My-header'].should == "test"
    @headers['my-header'].should == "test"
    @headers['MY-HEADER'].should == "test"
  end

  it "returns multi-element values joined together" do
    @headers["My-Header"] = "test"
    @headers.add_field("My-Header", "another test")
    @headers.add_field("My-Header", "and one more")

    @headers["My-Header"].should == "test, another test, and one more"
  end

  it "returns nil for non-existing entries" do
    @headers["My-Header"].should be_nil
    @headers["My-Other-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_reference_spec.rb
rhodes-7.5.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-7.4.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-7.1.17 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-6.2.0 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-6.0.11 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.18 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.17 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.15 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.0.22 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.0.7 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-5.5.0 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
tauplatform-1.0.3 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
tauplatform-1.0.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
tauplatform-1.0.1 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-3.5.1.12 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-3.3.5 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb
rhodes-3.4.2 spec/framework_spec/app/spec/library/net/http/httpheader/element_reference_spec.rb