Test loading a function from a module.
(self)
| 183 | assert path_module is os.path, "Should load os.path module" |
| 184 | |
| 185 | def test_load_function(self): |
| 186 | """Test loading a function from a module.""" |
| 187 | makedirs_func = load_class("os.makedirs") |
| 188 | assert makedirs_func is os.makedirs, "Should load os.makedirs function" |
| 189 | |
| 190 | def test_load_standard_library_class(self): |
| 191 | """Test loading a standard library class.""" |
nothing calls this directly
no test coverage detected