Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/controllers/profiles/two_factor_auths_controller_spec.rb')
-rw-r--r--spec/controllers/profiles/two_factor_auths_controller_spec.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/controllers/profiles/two_factor_auths_controller_spec.rb b/spec/controllers/profiles/two_factor_auths_controller_spec.rb
index 59eb33f4bc6..818bf2a4ae6 100644
--- a/spec/controllers/profiles/two_factor_auths_controller_spec.rb
+++ b/spec/controllers/profiles/two_factor_auths_controller_spec.rb
@@ -70,6 +70,12 @@ RSpec.describe Profiles::TwoFactorAuthsController do
go
end
+ it 'dismisses the `ACCOUNT_RECOVERY_REGULAR_CHECK` callout' do
+ expect(controller.helpers).to receive(:dismiss_account_recovery_regular_check)
+
+ go
+ end
+
it 'renders create' do
go
expect(response).to render_template(:create)
@@ -117,6 +123,12 @@ RSpec.describe Profiles::TwoFactorAuthsController do
user.reload
expect(user.otp_backup_codes).not_to be_empty
end
+
+ it 'dismisses the `ACCOUNT_RECOVERY_REGULAR_CHECK` callout' do
+ expect(controller.helpers).to receive(:dismiss_account_recovery_regular_check)
+
+ post :codes
+ end
end
describe 'DELETE destroy' do