From: Akihiko Odaki Date: Mon, 29 May 2017 16:13:11 +0000 (+0900) Subject: Spec Auth::ConfirmationsController (#3348) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=7bf2d6cb06570d84d96bbd2517da8b5e50d33309;p=mastodon.git Spec Auth::ConfirmationsController (#3348) --- diff --git a/spec/controllers/auth/confirmations_controller_spec.rb b/spec/controllers/auth/confirmations_controller_spec.rb new file mode 100644 index 000000000..cf7f91e52 --- /dev/null +++ b/spec/controllers/auth/confirmations_controller_spec.rb @@ -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