Fix failing test

This commit is contained in:
Arpit Jalan 2017-03-20 20:11:54 +05:30
parent 13fd8a45e3
commit 8cbfa24ca2

View File

@ -224,6 +224,7 @@ describe Invite do
it 'does not enqueue an email if the user has already set password' do it 'does not enqueue an email if the user has already set password' do
Fabricate(:user, email: invite.email, password_hash: "7af7805c9ee3697ed1a83d5e3cb5a3a431d140933a87fdcdc5a42aeef9337f81") Fabricate(:user, email: invite.email, password_hash: "7af7805c9ee3697ed1a83d5e3cb5a3a431d140933a87fdcdc5a42aeef9337f81")
Jobs.expects(:enqueue).with(:invite_password_instructions_email, has_key(:username)).never Jobs.expects(:enqueue).with(:invite_password_instructions_email, has_key(:username)).never
Jobs.expects(:enqueue).with(:critical_user_email, has_entries(type: :signup)) # should enqueue an account activation email
invite.redeem invite.redeem
end end