Sha256: 2055101344c4ecec394966b945534ff4b061df8c5e6ba4ec5c345813fb5bd8ab

Contents?: true

Size: 582 Bytes

Versions: 3

Compression:

Stored size: 582 Bytes

Contents

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

describe "Net::HTTP#delete" 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 DELETE request to the passed path and returns the response" do
    response = @http.delete("/request")
    response.should be_kind_of(Net::HTTPResponse)
    response.body.should == "Request type: DELETE"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysl-net-http-1.0.1 spec/http/delete_spec.rb
rubysl-net-http-2.0.4 spec/http/delete_spec.rb
rubysl-net-http-1.0.0 spec/http/delete_spec.rb