summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/get_index_request.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-14 20:19:13 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-14 20:19:13 -0600
commit8c847a682109e8305ff1ac14cd493255884d8675 (patch)
treeaeb269def99e61e69223d84c532187de0a20cef5 /spec/support/shared_examples/requests/get_index_request.rb
parent5a367387cfec9c2a152c6aeba765ee5ba42e03af (diff)
Añade specs faltantes de CompaniesController
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