1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-09 23:27:51 +00:00
bramw_baserow/backend/tests/conftest.py
2019-08-26 17:49:28 +00:00

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()