wedding-planner/spec/requests/users/confirmations_spec.rb
Manuel Bustillo 7803df7494
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m33s
Add copyright notice / copyright_notice (pull_request) Successful in 2m13s
Run unit tests / unit_tests (pull_request) Successful in 2m42s
Add copyright notice
2024-11-30 18:14:58 +00:00

23 lines
459 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
require 'swagger_helper'
RSpec.describe 'users/confirmations', type: :request do
path '/users/confirmation' do
get('confirm user email') do
tags 'Users'
produces 'application/json'
parameter name: :confirmation_token, in: :query, type: :string, required: true
response(200, 'confirmed') do
schema Swagger::Schema::USER
xit
end
response_422
end
end
end