(self, svg)
| 86 | def mocked_urlopen(*args, **kwargs): |
| 87 | class MockResponse: |
| 88 | def __init__(self, svg): |
| 89 | self._svg_data = svg |
| 90 | self.headers = {'content-type': 'image/svg+xml'} |
| 91 | |
| 92 | def read(self): |
| 93 | return self._svg_data |
nothing calls this directly
no outgoing calls
no test coverage detected