(self)
| 1324 | self.assertEqual(os.listdir(self._path), ['.mh_sequences']) |
| 1325 | |
| 1326 | def test_list_folders(self): |
| 1327 | # List folders |
| 1328 | self._box.add_folder('one') |
| 1329 | self._box.add_folder('two') |
| 1330 | self._box.add_folder('three') |
| 1331 | self.assertEqual(len(self._box.list_folders()), 3) |
| 1332 | self.assertEqual(set(self._box.list_folders()), |
| 1333 | set(('one', 'two', 'three'))) |
| 1334 | |
| 1335 | def test_get_folder(self): |
| 1336 | # Open folders |
nothing calls this directly
no test coverage detected