From: Akihiko Odaki Date: Mon, 29 May 2017 16:08:58 +0000 (+0900) Subject: Spec #destroy feature of Admin::TwoFactorAuthenticationsController (#3355) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=2e27ce3b61a21918b5cfcfcfea328c4225c12744;p=mastodon.git Spec #destroy feature of Admin::TwoFactorAuthenticationsController (#3355) --- diff --git a/spec/controllers/admin/two_factor_authentications_controller_spec.rb b/spec/controllers/admin/two_factor_authentications_controller_spec.rb index 69f26039a..4c1aa88d7 100644 --- a/spec/controllers/admin/two_factor_authentications_controller_spec.rb +++ b/spec/controllers/admin/two_factor_authentications_controller_spec.rb @@ -3,7 +3,7 @@ require 'rails_helper' describe Admin::TwoFactorAuthenticationsController do render_views - let(:user) { Fabricate(:user) } + let(:user) { Fabricate(:user, otp_required_for_login: true) } before do sign_in Fabricate(:user, admin: true), scope: :user end @@ -11,6 +11,9 @@ describe Admin::TwoFactorAuthenticationsController do describe 'DELETE #destroy' do it 'redirects to admin accounts page' do delete :destroy, params: { user_id: user.id } + + user.reload + expect(user.otp_required_for_login).to eq false expect(response).to redirect_to(admin_accounts_path) end end