Slide 25
Slide 25 text
Let’s try again
def send_billing_email(user_model=USERS, user_emailer=UserEmailer):
last_month = datetime.date.today() - datetime.timedelta(days=30)
for user in user_model.find(is_active=True, last_paid__lt=last_month):
user_emailer.send(user, 'billing_reminder')
class TestBillingEmail(unittest.TestCase):
def test_send_billing_email(self):
users_mock = Mock()
users = [sentinel.USER1, sentinel.USER2]
users_mock.find.return_value = users
user_emailer_mock = Mock()
code.send_billing_email(users_mock, user_emailer_mock)
last_month = datetime.date.today() - datetime.timedelta(days=30)
self.assertEqual(users_mock.find.call_args_list,
[call(is_active=True, last_paid__lt=last_month)])
self.assertEqual(user_emailer_mock.send.call_args_list,
[call(users[0], 'billing_reminder'),
call(users[1], 'billing_reminder')])