(
self, obj: Response | str | bytes, nodename: str, *args: Any
)
| 259 | @pytest.mark.filterwarnings("ignore::scrapy.exceptions.ScrapyDeprecationWarning") |
| 260 | class TestXmliter(TestXmliterBase): |
| 261 | def xmliter( |
| 262 | self, obj: Response | str | bytes, nodename: str, *args: Any |
| 263 | ) -> Iterator[Selector]: |
| 264 | return xmliter(obj, nodename) |
| 265 | |
| 266 | def test_deprecation(self): |
| 267 | body = b""" |
no test coverage detected