diff options
Diffstat (limited to 'ctrack/core/tests')
-rw-r--r-- | ctrack/core/tests/__init__.py | 0 | ||||
-rw-r--r-- | ctrack/core/tests/test_fixture_creation.py | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ctrack/core/tests/__init__.py b/ctrack/core/tests/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/ctrack/core/tests/__init__.py diff --git a/ctrack/core/tests/test_fixture_creation.py b/ctrack/core/tests/test_fixture_creation.py new file mode 100644 index 0000000..98d3174 --- /dev/null +++ b/ctrack/core/tests/test_fixture_creation.py @@ -0,0 +1,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 |