(path)
| 224 | |
| 225 | @patch_func(os.path, 'exists') |
| 226 | def exists(path): |
| 227 | backend = get_file_backend(path) |
| 228 | if isinstance(backend, LocalBackend): |
| 229 | return exists._fallback(path) |
| 230 | return backend.exists(path) |
| 231 | |
| 232 | @patch_func(os, 'listdir') |
| 233 | def listdir(path): |
no outgoing calls
no test coverage detected