| 7 | @pytest.mark.flaky(reruns=1, reruns_delay=2) |
| 8 | async def test_inherit_client(): |
| 9 | class SubClient(rnet.Client): |
| 10 | def __init__(self, **kwargs): |
| 11 | self.test_var = "test" |
| 12 | self.cookie_jar = None |
| 13 | |
| 14 | client = SubClient(impersonate=Impersonate.Chrome133) |
| 15 | url = "https://google.com" |
no outgoing calls