blob: 98d3174b934ee7188b2a063b4f5638375e4ef600 (
plain) (
tree)
|
|
"""
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
|