(self, cond, path, msg='')
| 199 | self.assertNotExists(path, msg, os.lstat) |
| 200 | |
| 201 | def assertCondExists(self, cond, path, msg=''): |
| 202 | if cond: |
| 203 | self.assertExists(path, msg) |
| 204 | else: |
| 205 | self.assertNotExists(path, msg) |
| 206 | |
| 207 | def assertDirectoryCount(self, path, count, list_directories=True): |
| 208 | """Assert that a directory has a specific number of files |