summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-03 21:25:47 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-03 21:25:47 -0600
commit47bf07fd939c264863b4bef3fedd46103f0b610c (patch)
tree93553122643f01a1d36c475dd5b0ac73eb5e5578 /spec/support
parent33230f933454e64436dddb906d53512f97a60ce1 (diff)
Añade specs faltantes
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/shared_examples/requests/get_request.rb11
-rw-r--r--spec/support/shared_examples/requests/post_request.rb2
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' } }