from buyercall.blueprints.email.utils.send import SendMail
class TestSendMail:
def test_send(self, mock_recipients, mock_sender, mock_subject, mock_plain_body, mock_html_body, mock_config_set_name):
return SendMail().send(mock_recipients, mock_sender, mock_subject, mock_plain_body, mock_html_body, mock_config_set_name)