(self)
| 1679 | self._check_sample(msg) |
| 1680 | |
| 1681 | def test_date(self): |
| 1682 | # Use get_date() and set_date() |
| 1683 | msg = mailbox.MaildirMessage(_sample_message) |
| 1684 | self.assertLess(abs(msg.get_date() - time.time()), 60) |
| 1685 | msg.set_date(0.0) |
| 1686 | self.assertEqual(msg.get_date(), 0.0) |
| 1687 | |
| 1688 | def test_info(self): |
| 1689 | # Use get_info() and set_info() |
nothing calls this directly
no test coverage detected