Sha256: cc6e4507a7254f32b772693b7d40b4035579afd40cb782f825d297806cad3f2e

Contents?: true

Size: 1.12 KB

Versions: 52

Compression:

Stored size: 1.12 KB

Contents

describe :net_httpheader_set_form_data, :shared => true do
  before(:each) do
    @headers = NetHTTPHeaderSpecs::Example.new
  end

  describe "when passed params" do
    it "automatically set the 'Content-Type' to 'application/x-www-form-urlencoded'" do
      @headers.send(@method, "cmd" => "search", "q" => "ruby", "max" => "50")
      @headers["Content-Type"].should == "application/x-www-form-urlencoded"
    end

    it "sets self's body based on the passed form parameters" do
      @headers.send(@method, "cmd" => "search", "q" => "ruby", "max" => "50")
      @headers.body.split("&").sort.should == ["cmd=search", "max=50", "q=ruby"]
    end
  end

  describe "when passed params, separator" do
    it "sets self's body based on the passed form parameters and the passed separator" do
      @headers.send(@method, {"cmd" => "search", "q" => "ruby", "max" => "50"}, "&")
      @headers.body.split("&").sort.should == ["cmd=search", "max=50", "q=ruby"]

      @headers.send(@method, {"cmd" => "search", "q" => "ruby", "max" => "50"}, ";")
      @headers.body.split(";").sort.should == ["cmd=search", "max=50", "q=ruby"]
    end
  end
end

Version data entries

52 entries across 52 versions & 3 rubygems

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