Skip to content
Snippets Groups Projects
Commit 55273423 authored by Stan Hu's avatar Stan Hu
Browse files

Merge branch 'correctly-stub-application-settings-in_signup_spec' into 'master'

Correctly stub application settings in signup_spec.rb

See merge request !11151
parents 8cd578a7 b1f753f7
No related branches found
No related tags found
2 merge requests!11151Correctly stub application settings in signup_spec.rb,!11056WIP: Resolve "Display performance deltas between app deployments on Merge Request workflow"
Pipeline #
Loading
Loading
@@ -3,7 +3,7 @@ require 'spec_helper'
feature 'Signup', feature: true do
describe 'signup with no errors' do
context "when sending confirmation email" do
before { allow_any_instance_of(ApplicationSetting).to receive(:send_user_confirmation_email).and_return(true) }
before { stub_application_setting(send_user_confirmation_email: true) }
 
it 'creates the user account and sends a confirmation email' do
user = build(:user)
Loading
Loading
@@ -23,7 +23,7 @@ feature 'Signup', feature: true do
end
 
context "when not sending confirmation email" do
before { allow_any_instance_of(ApplicationSetting).to receive(:send_user_confirmation_email).and_return(false) }
before { stub_application_setting(send_user_confirmation_email: false) }
 
it 'creates the user account and goes to dashboard' do
user = build(:user)
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment