app/tests/jobs/test_send_proton_welcome.py
Adrià Casajús 9378b8a17d
Fix: Return email in the get_communication_email always and search for the alias when needed (#1497)
Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
2022-12-19 09:23:53 +01:00

15 lines
457 B
Python

from app.mail_sender import mail_sender
from job_runner import welcome_proton
from tests.utils import create_new_user
@mail_sender.store_emails_test_decorator
def test_send_welcome_proton_email():
user = create_new_user()
welcome_proton(user)
sent_mails = mail_sender.get_stored_emails()
assert len(sent_mails) == 1
sent_mail = sent_mails[0]
comm_email, _, _ = user.get_communication_email()
sent_mail.envelope_to = comm_email