(self)
| 675 | self._check_basics() |
| 676 | |
| 677 | def test_initialize_existing(self): |
| 678 | # Initialize an existing mailbox |
| 679 | self.tearDown() |
| 680 | for subdir in '', 'tmp', 'new', 'cur': |
| 681 | os.mkdir(os.path.normpath(os.path.join(self._path, subdir))) |
| 682 | self._box = mailbox.Maildir(self._path) |
| 683 | self._check_basics() |
| 684 | |
| 685 | def test_filename_leading_dot(self): |
| 686 | self.tearDown() |
nothing calls this directly
no test coverage detected