Index: django/test/client.py
===================================================================
--- django/test/client.py	(revision 4259)
+++ django/test/client.py	(working copy)
@@ -62,6 +62,14 @@
                 '',
                 value.read()
             ])
+        elif isinstance(value, list) or isinstance(value, tuple):
+            for item in value:
+                lines.extend([
+                    '--' + boundary,
+                    'Content-Disposition: form-data; name="%s"' % key,
+                    '',
+                    str(item)
+                ])
         else:
             lines.extend([
                 '--' + boundary,
