Sha256: 061d64fac8f6efdd859e470106b7dca22f8c505f5ff63ef98d984bf0efaf642b

Contents?: true

Size: 1.68 KB

Versions: 13

Compression:

Stored size: 1.68 KB

Contents

## -------------------------------------------------------------------
##
## Copyright (c) 2009 Phillip Toland <phil.toland@gmail.com>
##
## Permission is hereby granted, free of charge, to any person obtaining a copy
## of this software and associated documentation files (the "Software"), to deal
## in the Software without restriction, including without limitation the rights
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## copies of the Software, and to permit persons to whom the Software is
## furnished to do so, subject to the following conditions:
##
## The above copyright notice and this permission notice shall be included in
## all copies or substantial portions of the Software.
##
## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
## IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
## AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
## THE SOFTWARE.
##
## -------------------------------------------------------------------
require File.dirname(__FILE__) + '/spec_helper.rb'
require 'webrick'
require 'base64'
require 'fileutils'

describe Patron::Response do
  before(:each) do
    @session = Patron::Session.new
    @session.base_url = "http://localhost:9001"
  end

  it "should strip extra spaces from header values" do
    response = @session.get("/test")
    # All digits, no spaces
    response.headers['Content-Length'].should match(/^\d+$/)
  end
end

Version data entries

13 entries across 13 versions & 5 rubygems

Version Path
chrisjpowers-patron-0.4.0 spec/response_spec.rb
chrisjpowers-patron-0.4.1 spec/response_spec.rb
dusty-patron-0.4.3 spec/response_spec.rb
jameskilton-patron-0.4.3 spec/response_spec.rb
toland-patron-0.4.0 spec/response_spec.rb
toland-patron-0.4.1 spec/response_spec.rb
toland-patron-0.4.2 spec/response_spec.rb
toland-patron-0.4.3 spec/response_spec.rb
patron-0.4.4 spec/response_spec.rb
patron-0.4.3 spec/response_spec.rb
patron-0.4.1 spec/response_spec.rb
patron-0.4.2 spec/response_spec.rb
patron-0.4.0 spec/response_spec.rb