forked from fedi/mastodon
Spec Auth::ConfirmationsController (#3348)
This commit is contained in:
parent
11e5c965c3
commit
7bf2d6cb06
13
spec/controllers/auth/confirmations_controller_spec.rb
Normal file
13
spec/controllers/auth/confirmations_controller_spec.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
describe Auth::ConfirmationsController, type: :controller do
|
||||
describe 'GET #new' do
|
||||
it 'returns http success' do
|
||||
@request.env['devise.mapping'] = Devise.mappings[:user]
|
||||
get :new
|
||||
expect(response).to have_http_status(:success)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue