File: delete_spec.rb

package info (click to toggle)
ruby-ethon 0.16.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 676 kB
  • sloc: ruby: 5,403; sh: 9; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 514 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
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