(url, **kwargs)
| 48 | with aioresponses() as m: |
| 49 | |
| 50 | def handler(url, **kwargs): |
| 51 | headers = kwargs["headers"] |
| 52 | assert "Content-Type" in headers |
| 53 | assert headers["Content-Type"] == "application/x-www-form-urlencoded" |
| 54 | |
| 55 | m.post( |
| 56 | "https://api.binance.com/api/v3/order", |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…