Sha256: c73b165522b61813b3b45d82e70ad537a95c4759f663e7924a3e750eac1b6495

Contents?: true

Size: 484 Bytes

Versions: 50

Compression:

Stored size: 484 Bytes

Contents

require 'spec_helper'

describe Ethon::Easy::Http::Delete do
  let(:easy) { Ethon::Easy.new }
  let(:url) { "http://localhost:3001/" }
  let(:params) { nil }
  let(:form) { nil }
  let(:delete) { described_class.new(url, {:params => params, :body => form}) }

  context "when requesting" do
    before do
      delete.setup(easy)
      easy.perform
    end

    it "makes a delete request" do
      expect(easy.response_body).to include('"REQUEST_METHOD":"DELETE"')
    end
  end
end

Version data entries

50 entries across 49 versions & 8 rubygems

Version Path
ethon-0.8.0 spec/ethon/easy/http/delete_spec.rb
ethon-0.7.4 spec/ethon/easy/http/delete_spec.rb
ethon-0.7.3 spec/ethon/easy/http/delete_spec.rb
ethon-0.7.2 spec/ethon/easy/http/delete_spec.rb
ethon-0.7.1 spec/ethon/easy/http/delete_spec.rb
ethon-0.7.0 spec/ethon/easy/http/delete_spec.rb
ethon-0.6.3 spec/ethon/easy/http/delete_spec.rb
ethon-0.6.2 spec/ethon/easy/http/delete_spec.rb
ethon-0.6.1 spec/ethon/easy/http/delete_spec.rb
ethon-0.6.0 spec/ethon/easy/http/delete_spec.rb