(self, client)
| 46 | |
| 47 | class AuthActions: |
| 48 | def __init__(self, client): |
| 49 | self._client = client |
| 50 | |
| 51 | def login(self, username="test", password="test"): |
| 52 | return self._client.post( |
nothing calls this directly
no outgoing calls
no test coverage detected