aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/tests/conftest.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/ctrack/organisations/tests/conftest.py b/ctrack/organisations/tests/conftest.py
new file mode 100644
index 0000000..1435c86
--- /dev/null
+++ b/ctrack/organisations/tests/conftest.py
@@ -0,0 +1,11 @@
+
+# TODO Here we need to make use of the populate script to create a massive
+# test fixture.
+import pytest
+
+from ctrack.core.utils import populate_db
+
+
+@pytest.fixture
+def full_db_fixture():
+ populate_db(orgs=2, igps=2)