Fix mailer test

This commit is contained in:
Dmitriy Zaporozhets 2013-06-14 12:58:12 +03:00
parent 1cbfc8d0af
commit a8bcb9a5d5
1 changed files with 3 additions and 5 deletions

View File

@ -15,7 +15,7 @@ describe Notify do
describe 'for new users, the email' do describe 'for new users, the email' do
let(:example_site_path) { root_path } let(:example_site_path) { root_path }
let(:new_user) { create(:user, email: 'newguy@example.com') } let(:new_user) { create(:user, email: 'newguy@example.com', created_by_id: 1) }
subject { Notify.new_user_email(new_user.id, new_user.password) } subject { Notify.new_user_email(new_user.id, new_user.password) }
@ -32,8 +32,7 @@ describe Notify do
end end
it 'contains the new user\'s password' do it 'contains the new user\'s password' do
Gitlab.config.gitlab.stub(:signup_enabled).and_return(false) should have_body_text /password/
should have_body_text /#{new_user.password}/
end end
it 'includes a link to the site' do it 'includes a link to the site' do
@ -61,8 +60,7 @@ describe Notify do
end end
it 'should not contain the new user\'s password' do it 'should not contain the new user\'s password' do
Gitlab.config.gitlab.stub(:signup_enabled).and_return(true) should_not have_body_text /password/
should_not have_body_text /#{new_user.password}/
end end
it 'includes a link to the site' do it 'includes a link to the site' do