1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Use generator in Mailbox.get_mail to limit memory leak (#149)

* Use generator in Mailbox.get_mail to limit memory leak

* Fix generator support in tests/base.py
This commit is contained in:
Adam Dobrawy 2018-03-09 19:09:45 +01:00 committed by Adam Coddington
parent a299a00506
commit 2b2bdb9825
4 changed files with 24 additions and 14 deletions

View file

@ -32,5 +32,5 @@ class TestMailbox(TestCase):
'generic_message.eml',
))
self.assertEqual(mailbox.last_polling, None)
mailbox.get_new_mail()
list(mailbox.get_new_mail())
self.assertNotEqual(mailbox.last_polling, None)