aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/conftest.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-10-15 21:01:31 +0100
committerMatthew Lemon <y@yulqen.org>2024-10-15 21:01:31 +0100
commiteeaddb27560d723ca7d61359744ceb2709fccd2d (patch)
tree04ddbc49ae7b73d5f5a9e1716d7227aecd3b9f85 /alphabetlearning/conftest.py
parent7a3044c859043837e6c7c95bb4894d04e9b2cbc2 (diff)
Renamed from pyblackbird_cc to alphabetlearning - everywhere
Diffstat (limited to 'alphabetlearning/conftest.py')
-rw-r--r--alphabetlearning/conftest.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/alphabetlearning/conftest.py b/alphabetlearning/conftest.py
new file mode 100644
index 0000000..0637c23
--- /dev/null
+++ b/alphabetlearning/conftest.py
@@ -0,0 +1,25 @@
+import pytest
+
+from alphabetlearning.resources.factories import ResourceModelFactory
+from alphabetlearning.users.models import User
+from alphabetlearning.users.tests.factories import UserFactory
+
+
+@pytest.fixture(autouse=True)
+def _media_storage(settings, tmpdir) -> None:
+ settings.MEDIA_ROOT = tmpdir.strpath
+
+
+@pytest.fixture()
+def user(db) -> User:
+ return UserFactory()
+
+
+@pytest.fixture()
+def resource():
+ return ResourceModelFactory()
+
+
+@pytest.fixture()
+def resources():
+ return ResourceModelFactory.create_batch(5)