Spec Auth::PasswordsController (#3352)

This commit is contained in:
Akihiko Odaki 2017-05-30 01:10:50 +09:00 committed by Eugen Rochko
parent 00dda99789
commit a7f2961621

View file

@ -0,0 +1,13 @@
# frozen_string_literal: true
require 'rails_helper'
describe Auth::PasswordsController, 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