Make sure that we can reload all libraries of arbitrary depth
(self)
| 1251 | |
| 1252 | @pytest.mark.slow_test |
| 1253 | def test_reload(self): |
| 1254 | """ |
| 1255 | Make sure that we can reload all libraries of arbitrary depth |
| 1256 | """ |
| 1257 | self._verify_libs() |
| 1258 | |
| 1259 | # update them all |
| 1260 | for lib in self.libs: |
| 1261 | for x in range(5): |
| 1262 | self.update_lib(lib) |
| 1263 | self.loader.clear() |
| 1264 | self._verify_libs() |
| 1265 | |
| 1266 | |
| 1267 | class LoaderMultipleGlobalTest(ModuleCase): |
nothing calls this directly
no test coverage detected