You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
322 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. describe Auth::ConfirmationsController, type: :controller do
  4. describe 'GET #new' do
  5. it 'returns http success' do
  6. @request.env['devise.mapping'] = Devise.mappings[:user]
  7. get :new
  8. expect(response).to have_http_status(:success)
  9. end
  10. end
  11. end