(self)
| 26 | assert obj is Field |
| 27 | |
| 28 | def test_load_object_function(self): |
| 29 | obj = load_object(load_object) |
| 30 | assert obj is load_object |
| 31 | obj = load_object("scrapy.utils.misc.load_object") |
| 32 | assert obj is load_object |
| 33 | |
| 34 | def test_load_object_exceptions(self): |
| 35 | with pytest.raises(ImportError): |
nothing calls this directly
no test coverage detected