--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/parts/django/tests/regressiontests/file_uploads/models.py Sat Jan 08 11:20:57 2011 +0530
@@ -0,0 +1,10 @@
+import tempfile
+import os
+from django.db import models
+from django.core.files.storage import FileSystemStorage
+
+temp_storage = FileSystemStorage(tempfile.mkdtemp())
+UPLOAD_TO = os.path.join(temp_storage.location, 'test_upload')
+
+class FileModel(models.Model):
+ testfile = models.FileField(storage=temp_storage, upload_to='test_upload')