Sha256: 5de6a64961049fcfa6850c96ad38b18eb3806c005ddb748ec80260ff9915a896
Contents?: true
Size: 654 Bytes
Versions: 3
Compression:
Stored size: 654 Bytes
Contents
require 'net/http' require File.expand_path('../fixtures/http_server', __FILE__) describe "Net::HTTP#head" do before(:all) do NetHTTPSpecs.start_server end after(:all) do NetHTTPSpecs.stop_server end before(:each) do @http = Net::HTTP.start("localhost", 3333) end after(:each) do @http.finish if @http.started? end it "sends a HEAD request to the passed path and returns the response" do response = @http.head("/request") # HEAD requests have no responses response.body.should be_nil end it "returns a Net::HTTPResponse" do @http.head("/request").should be_kind_of(Net::HTTPResponse) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rubysl-net-http-1.0.1 | spec/http/head_spec.rb |
rubysl-net-http-2.0.4 | spec/http/head_spec.rb |
rubysl-net-http-1.0.0 | spec/http/head_spec.rb |