diff options
author | HombreLaser <sebastian-440@live.com> | 2023-03-14 20:19:13 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-03-14 20:19:13 -0600 |
commit | 8c847a682109e8305ff1ac14cd493255884d8675 (patch) | |
tree | aeb269def99e61e69223d84c532187de0a20cef5 /spec/support/shared_examples/requests/get_request.rb | |
parent | 5a367387cfec9c2a152c6aeba765ee5ba42e03af (diff) |
Añade specs faltantes de CompaniesController
Diffstat (limited to 'spec/support/shared_examples/requests/get_request.rb')
-rw-r--r-- | spec/support/shared_examples/requests/get_request.rb | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/spec/support/shared_examples/requests/get_request.rb b/spec/support/shared_examples/requests/get_request.rb index c402196..d58da67 100644 --- a/spec/support/shared_examples/requests/get_request.rb +++ b/spec/support/shared_examples/requests/get_request.rb @@ -1,11 +1,20 @@ # frozen_string_literal: true -RSpec.shared_examples 'a GET request' do +RSpec.shared_examples 'a GET resource request' do |sole_route: false| context 'for an existing resource' do - it 'returns a 200 status and the requested resource(s)'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 + + unless sole_route + context 'for a nonexistent resource' do + it 'returns a 404 http status' do + get(invalid_route, headers:) + expect(response).to have_http_status(404) + end + end + end end |