(self)
| 351 | os.unlink(os.path.join(self.tmp_dir, filename)) |
| 352 | |
| 353 | def get_mailbox_content(self): |
| 354 | messages = [] |
| 355 | for filename in self.get_filenames(): |
| 356 | messages.extend(self.get_messages_from_filename(filename)) |
| 357 | return messages |
| 358 | |
| 359 | def test_fail_silently_arg_accepted(self): |
| 360 | # RemovedInDjango70Warning: remove this comment (but keep the test). |
nothing calls this directly
no test coverage detected