summaryrefslogtreecommitdiff
path: root/spec/requests/authentications_spec.rb
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-02-26 20:20:19 -0600
committerHombreLaser <sebastian-440@live.com>2023-02-26 20:20:19 -0600
commit094ee717f710ea4cf81d221c5bf9660b805da9b1 (patch)
treed3b5d3169bb82c34eb2cb3a0f9d6da72ad5846f7 /spec/requests/authentications_spec.rb
parent4a1faf270ae328a1a28d9f8f54d9a96ed41a1542 (diff)
Añade spec para refresh_tokens
Diffstat (limited to 'spec/requests/authentications_spec.rb')
-rw-r--r--spec/requests/authentications_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/requests/authentications_spec.rb b/spec/requests/authentications_spec.rb
index 3b1da3e..6b33402 100644
--- a/spec/requests/authentications_spec.rb
+++ b/spec/requests/authentications_spec.rb
@@ -4,6 +4,7 @@ require 'rails_helper'
RSpec.describe 'POST /api/authenticate', type: :request do
it_behaves_like 'a POST request' do
+ let(:headers) { { 'CONTENT_TYPE' => 'application/json' } }
let(:route) { '/api/authenticate' }
let(:expected_error_messages) { ['Credenciales incorrectas'] }
let(:desired_error_status) { 401 }