Close file after tests added in 945e033a69.

Avoids failures on Windows. Refs #8918.
This commit is contained in:
Ramiro Morales 2013-10-14 15:26:54 -03:00
parent 1ac534a92f
commit 8ab5f1fe47
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,7 @@ class FileStorageTests(TestCase):
obj2.normal.save("django_test.txt", ContentFile("more content"))
self.assertEqual(obj2.normal.name, "tests/django_test_1.txt")
self.assertEqual(obj2.normal.size, 12)
obj2.normal.close()
# Push the objects into the cache to make sure they pickle properly
cache.set("obj1", obj1)
@ -75,6 +76,7 @@ class FileStorageTests(TestCase):
obj2.delete()
obj2.normal.save("django_test.txt", ContentFile("more content"))
self.assertEqual(obj2.normal.name, "tests/django_test_2.txt")
obj2.normal.close()
# Multiple files with the same name get _N appended to them.
objs = [Storage() for i in range(3)]
@ -105,12 +107,14 @@ class FileStorageTests(TestCase):
obj4 = Storage()
obj4.random.save("random_file", ContentFile("random content"))
self.assertTrue(obj4.random.name.endswith("/random_file"))
obj4.random.close()
# upload_to can be empty, meaning it does not use subdirectory.
obj5 = Storage()
obj5.empty.save('django_test.txt', ContentFile('more content'))
self.assertEqual(obj5.empty.name, "./django_test.txt")
self.assertEqual(obj5.empty.read(), b"more content")
obj5.empty.close()
def test_file_object(self):
# Create sample file