(self)
| 672 | self.assertIsInstance(msg2, FakeMessage) |
| 673 | |
| 674 | def test_initialize_new(self): |
| 675 | # Initialize a non-existent mailbox |
| 676 | self.tearDown() |
| 677 | self._box = mailbox.Maildir(self._path) |
| 678 | self._check_basics() |
| 679 | self._delete_recursively(self._path) |
| 680 | self._box = self._factory(self._path, factory=None) |
| 681 | self._check_basics() |
| 682 | |
| 683 | def test_initialize_existing(self): |
| 684 | # Initialize an existing mailbox |
nothing calls this directly
no test coverage detected