mirror of
https://github.com/funamitech/mastodon
synced 2024-11-27 22:38:42 +09:00
14 lines
322 B
Ruby
14 lines
322 B
Ruby
|
# 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
|