If a module specifies __load__ we should only load/expose those modules
(self)
| 673 | |
| 674 | @pytest.mark.slow_test |
| 675 | def test__load__(self): |
| 676 | """ |
| 677 | If a module specifies __load__ we should only load/expose those modules |
| 678 | """ |
| 679 | self.update_module() |
| 680 | |
| 681 | # ensure it doesn't exist |
| 682 | self.assertNotIn(self.module_key + "2", self.loader) |
| 683 | |
| 684 | @pytest.mark.slow_test |
| 685 | def test__load__and_depends(self): |
nothing calls this directly
no test coverage detected