(
self, obj: Response | str | bytes, nodename: str, *args: Any
)
| 19 | class TestXmliterBase(ABC): |
| 20 | @abstractmethod |
| 21 | def xmliter( |
| 22 | self, obj: Response | str | bytes, nodename: str, *args: Any |
| 23 | ) -> Iterator[Selector]: |
| 24 | raise NotImplementedError |
| 25 | |
| 26 | def test_xmliter(self): |
| 27 | body = b""" |
no outgoing calls
no test coverage detected