(self)
| 945 | |
| 946 | @pytest.mark.slow_test |
| 947 | def test_basic(self): |
| 948 | # ensure it doesn't exist |
| 949 | self.assertNotIn(self.module_key, self.loader) |
| 950 | |
| 951 | self.update_module() |
| 952 | self.update_lib() |
| 953 | self.loader.clear() |
| 954 | self.assertIn(self.module_key, self.loader) |
| 955 | |
| 956 | @pytest.mark.slow_test |
| 957 | def test_reload(self): |
nothing calls this directly
no test coverage detected