diff options
author | HombreLaser <sebastian-440@live.com> | 2023-03-03 21:25:47 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-03-03 21:25:47 -0600 |
commit | 47bf07fd939c264863b4bef3fedd46103f0b610c (patch) | |
tree | 93553122643f01a1d36c475dd5b0ac73eb5e5578 /spec/support/shared_examples/requests | |
parent | 33230f933454e64436dddb906d53512f97a60ce1 (diff) |
Añade specs faltantes
Diffstat (limited to 'spec/support/shared_examples/requests')
-rw-r--r-- | spec/support/shared_examples/requests/get_request.rb | 11 | ||||
-rw-r--r-- | spec/support/shared_examples/requests/post_request.rb | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/spec/support/shared_examples/requests/get_request.rb b/spec/support/shared_examples/requests/get_request.rb new file mode 100644 index 0000000..c402196 --- /dev/null +++ b/spec/support/shared_examples/requests/get_request.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +RSpec.shared_examples 'a GET request' do + context 'for an existing resource' do + it 'returns a 200 status and the requested resource(s)'do + get(route, headers:) + expect(response).to have_http_status(200) + expect(response.body).to include_strings(expected_text) + end + end +end diff --git a/spec/support/shared_examples/requests/post_request.rb b/spec/support/shared_examples/requests/post_request.rb index a253281..b7226d0 100644 --- a/spec/support/shared_examples/requests/post_request.rb +++ b/spec/support/shared_examples/requests/post_request.rb @@ -1,3 +1,5 @@ +# frozen_string_literal: true + RSpec.shared_examples 'a POST request' do let(:headers) { { 'CONTENT_TYPE' => 'application/json' } } |