summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/get_index_request.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support/shared_examples/requests/get_index_request.rb')
-rw-r--r--spec/support/shared_examples/requests/get_index_request.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/support/shared_examples/requests/get_index_request.rb b/spec/support/shared_examples/requests/get_index_request.rb
new file mode 100644
index 0000000..2875b28
--- /dev/null
+++ b/spec/support/shared_examples/requests/get_index_request.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+RSpec.shared_examples 'a GET index request' do
+ it 'returns a 200 http status and the requested resources' do
+ get(route, headers:)
+ expect(response).to have_http_status(200)
+ resources = JSON.parse(response.body)
+ expect(resources['data'].length).to eq(pagination_size)
+ end
+end \ No newline at end of file