mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-09 23:27:51 +00:00
13 lines
216 B
Python
13 lines
216 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def data_fixture():
|
|
from .fixtures import Fixtures
|
|
return Fixtures()
|
|
|
|
|
|
@pytest.fixture()
|
|
def api_client():
|
|
from rest_framework.test import APIClient
|
|
return APIClient()
|