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