aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/core/tests/test_fixture_creation.py
blob: 98d3174b934ee7188b2a063b4f5638375e4ef600 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
We want to profile the fixture creation function so that we can make it more acceptable for use in tests.
"""
import pytest

from ctrack.core.utils import populate_db

pytestmark = pytest.mark.django_db


def test_core_populate_func():
    populate_db(orgs=2, igps=2)
    assert True