summaryrefslogtreecommitdiff
path: root/tests/admin_widgets/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/admin_widgets/models.py')
-rw-r--r--tests/admin_widgets/models.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/admin_widgets/models.py b/tests/admin_widgets/models.py
index 15d7a3022e..26eaf5d243 100644
--- a/tests/admin_widgets/models.py
+++ b/tests/admin_widgets/models.py
@@ -1,8 +1,13 @@
+import tempfile
import uuid
from django.contrib.auth.models import User
+from django.core.files.storage import FileSystemStorage
from django.db import models
+temp_storage_dir = tempfile.mkdtemp()
+temp_storage = FileSystemStorage(temp_storage_dir)
+
class MyFileField(models.FileField):
pass
@@ -177,6 +182,9 @@ class Advisor(models.Model):
class Student(models.Model):
name = models.CharField(max_length=255)
+ photo = models.ImageField(
+ storage=temp_storage, upload_to="photos", blank=True, null=True
+ )
class Meta:
ordering = ("name",)