Correctly stub application settings in signup_spec.rb
This commit is contained in:
parent
6ad3814e1b
commit
b1f753f7f2
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ require 'spec_helper'
|
||||||
feature 'Signup', feature: true do
|
feature 'Signup', feature: true do
|
||||||
describe 'signup with no errors' do
|
describe 'signup with no errors' do
|
||||||
context "when sending confirmation email" 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
|
it 'creates the user account and sends a confirmation email' do
|
||||||
user = build(:user)
|
user = build(:user)
|
||||||
|
@ -23,7 +23,7 @@ feature 'Signup', feature: true do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when not sending confirmation email" do
|
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
|
it 'creates the user account and goes to dashboard' do
|
||||||
user = build(:user)
|
user = build(:user)
|
||||||
|
|
Loading…
Reference in a new issue