Spec Auth::ConfirmationsController (#3348)

th-downstream
Akihiko Odaki 7 years ago committed by Eugen Rochko
parent a111604729
commit 587f2d0b1f

@ -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…
Cancel
Save