aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/assessments/tests/conftest.py
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-05-13 17:00:23 +0100
committerMR Lemon <matt@matthewlemon>2020-05-13 17:00:23 +0100
commitcdd67e184c07ab0c487a59270c4b5f1edf0544e0 (patch)
tree0e73088c4e056fd9d82bf86e9ed84cd23876a5bf /ctrack/assessments/tests/conftest.py
parent5ae47c0121946c4691e7149fb8c983d1a3750405 (diff)
first passing assessments app test - wiring test only
Diffstat (limited to '')
-rw-r--r--ctrack/assessments/tests/conftest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/ctrack/assessments/tests/conftest.py b/ctrack/assessments/tests/conftest.py
index 4a9126c..1435c86 100644
--- a/ctrack/assessments/tests/conftest.py
+++ b/ctrack/assessments/tests/conftest.py
@@ -1,4 +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)