From b174a733a5ba58f1d9802feaa4793b4a6c2df523 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Fri, 10 Mar 2023 21:40:37 -0600 Subject: AƱade specs del controlador de companies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- spec/support/shared_examples/requests/post_request.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spec/support') diff --git a/spec/support/shared_examples/requests/post_request.rb b/spec/support/shared_examples/requests/post_request.rb index b7226d0..c7b8d77 100644 --- a/spec/support/shared_examples/requests/post_request.rb +++ b/spec/support/shared_examples/requests/post_request.rb @@ -4,8 +4,8 @@ RSpec.shared_examples 'a POST request' do let(:headers) { { 'CONTENT_TYPE' => 'application/json' } } context 'with correct parameters' do - it 'returns a successful http status and a response to the posted data' do - post(route, params: params.to_json, headers:) + it 'returns a successful http status and a response with the posted data' do + post(route, params: params, headers:) expect(response).to have_http_status(200) expect(response.body).to include_strings(expected_text) end @@ -13,7 +13,7 @@ RSpec.shared_examples 'a POST request' do context 'with incorrect parameters' do it 'returns a client side error http status and a error message' do - post(route, params: wrong_params.to_json, headers:) + post(route, params: wrong_params, headers:) expect(response).to have_http_status(desired_error_status) expect(response.body).to include_strings(expected_error_messages) end -- cgit v1.2.3