mastodon/spec/controllers/auth/passwords_controller_spec.rb

14 lines
318 B
Ruby
Raw Normal View History

2017-05-29 16:10:50 +00:00
# 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