0
0
Fork 0

Use raw status code on have_http_status (#7214)

This commit is contained in:
Yamagishi Kazutoshi 2018-04-22 04:35:07 +09:00 committed by Eugen Rochko
parent bfe26ef67b
commit d10447c3a8
87 changed files with 176 additions and 176 deletions

View file

@ -15,7 +15,7 @@ describe Settings::TwoFactorAuthentication::ConfirmationsController do
expect(assigns(:confirmation)).to be_instance_of Form::TwoFactorConfirmation
expect(assigns(:provision_url)).to eq 'otpauth://totp/local-part@domain?secret=thisisasecretforthespecofnewview&issuer=cb6e6126.ngrok.io'
expect(assigns(:qrcode)).to be_instance_of RQRCode::QRCode
expect(response).to have_http_status(:success)
expect(response).to have_http_status(200)
expect(response).to render_template(:new)
end
end
@ -71,7 +71,7 @@ describe Settings::TwoFactorAuthentication::ConfirmationsController do
expect(assigns(:recovery_codes)).to eq otp_backup_codes
expect(flash[:notice]).to eq 'Two-factor authentication successfully enabled'
expect(response).to have_http_status(:success)
expect(response).to have_http_status(200)
expect(response).to render_template('settings/two_factor_authentication/recovery_codes/index')
end
end

View file

@ -19,7 +19,7 @@ describe Settings::TwoFactorAuthentication::RecoveryCodesController do
expect(assigns(:recovery_codes)).to eq otp_backup_codes
expect(flash[:notice]).to eq 'Recovery codes successfully regenerated'
expect(response).to have_http_status(:success)
expect(response).to have_http_status(200)
expect(response).to render_template(:index)
end