summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-10-10 20:09:51 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-10-10 20:09:51 +0000
commitc1851350687eb8aed5fd51db37c2eca35b2167cd (patch)
tree9188426cfeea0adf9586913204feba40bc0d8d4d /tests
parent9a72913edd10dbf2214397b20c3f5f501afd506b (diff)
Be nice to buildbots: switched `modeltests/files` to use a proper isolated directory for file storage
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9222 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/files/models.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/modeltests/files/models.py b/tests/modeltests/files/models.py
index c9cfc357c3..3df3122cdb 100644
--- a/tests/modeltests/files/models.py
+++ b/tests/modeltests/files/models.py
@@ -5,14 +5,15 @@
and where files should be stored.
"""
+import shutil
import tempfile
-
from django.db import models
from django.core.files.base import ContentFile
from django.core.files.storage import FileSystemStorage
from django.core.cache import cache
-temp_storage = FileSystemStorage(location=tempfile.gettempdir())
+temp_storage_location = tempfile.mkdtemp()
+temp_storage = FileSystemStorage(location=temp_storage_location)
# Write out a file to be used as default content
temp_storage.save('tests/default.txt', ContentFile('default content'))
@@ -109,10 +110,10 @@ ValueError: The 'normal' attribute has no file associated with it.
>>> obj4.random
<FieldFile: .../random_file>
-# Clean up the temporary files.
-
+# Clean up the temporary files and dir.
>>> obj1.normal.delete()
>>> obj2.normal.delete()
>>> obj3.default.delete()
>>> obj4.random.delete()
+>>> shutil.rmtree(temp_storage_location)
"""}