Kaydet (Commit) e7dfb603 authored tarafından Tom Scrace's avatar Tom Scrace Kaydeden (comit) Tim Graham

Tested the test client uploading of NamedTemporaryFile.

üst 5549e89b
......@@ -721,6 +721,11 @@ class ClientTest(TestCase):
response = self.client.post('/upload_view/', data={'temp_file': test_file})
self.assertEqual(response.content, b'temp_file')
def test_uploading_named_temp_file(self):
test_file = tempfile.NamedTemporaryFile()
response = self.client.post('/upload_view/', data={'named_temp_file': test_file})
self.assertEqual(response.content, b'named_temp_file')
@override_settings(
MIDDLEWARE=['django.middleware.csrf.CsrfViewMiddleware'],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment