(patching)
| 75 | |
| 76 | |
| 77 | def test_reload_from_cwd(patching): |
| 78 | reload = patching('celery.utils.imports.reload') |
| 79 | reload_from_cwd('foo') |
| 80 | reload.assert_called() |
| 81 | |
| 82 | |
| 83 | def test_reload_from_cwd_custom_reloader(): |
nothing calls this directly
no test coverage detected