Sha256: 9cf3b24ead95e98256700ff9158c95a998216ba01801cca7d44d7b54dedc7a3d
Contents?: true
Size: 774 Bytes
Versions: 25
Compression:
Stored size: 774 Bytes
Contents
describe "Deleting a pact" do let(:pact_content) { load_fixture('a_consumer-a_provider.json') } let(:path) { "/pacts/provider/A%20Provider/consumer/A%20Consumer/version/1.2.3" } let(:response_body_json) { JSON.parse(subject.body) } subject { delete path; last_response } context "when the pact exists" do before do ProviderStateBuilder.new.create_pact_with_hierarchy "A Consumer", "1.2.3", "A Provider" end it "deletes the pact" do expect{ subject }.to change{ PactBroker::Pacts::DatabaseModel.count }.by(-1) end it "returns a 204" do expect(subject.status).to be 204 end end context "when the pact does not exist" do it "returns a 404 Not Found" do expect(subject.status).to be 404 end end end
Version data entries
25 entries across 25 versions & 1 rubygems