(self)
| 681 | self._check_basics() |
| 682 | |
| 683 | def test_initialize_existing(self): |
| 684 | # Initialize an existing mailbox |
| 685 | self.tearDown() |
| 686 | for subdir in '', 'tmp', 'new', 'cur': |
| 687 | os.mkdir(os.path.normpath(os.path.join(self._path, subdir))) |
| 688 | self._box = mailbox.Maildir(self._path) |
| 689 | self._check_basics() |
| 690 | |
| 691 | def test_filename_leading_dot(self): |
| 692 | self.tearDown() |
nothing calls this directly
no test coverage detected