summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/get_request.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/requests/get_request.rb')
-rw-r--r--spec/support/shared_examples/requests/get_request.rb13
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