mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
17 lines
215 B
Python
17 lines
215 B
Python
import pytest
|
|
|
|
from .fixtures import admin_user # noqa
|
|
|
|
|
|
@pytest.fixture()
|
|
def admin_client():
|
|
return Client()
|
|
|
|
|
|
class Client:
|
|
def login(self, **credentials):
|
|
...
|
|
|
|
def logout(self):
|
|
...
|