wedding-planner/spec/requests/users/confirmations_spec.rb
Manuel Bustillo 598cb553c9
All checks were successful
Check usage of free licenses / check-licenses (pull_request) Successful in 1m6s
Add copyright notice / copyright_notice (pull_request) Successful in 2m5s
Run unit tests / unit_tests (pull_request) Successful in 3m9s
Add copyright notice
2024-11-30 17:47:30 +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