| 888 | |
| 889 | |
| 890 | class MultipleUploadFileApp(SingleUploadFileApp): |
| 891 | |
| 892 | body = b""" |
| 893 | <html> |
| 894 | <head><title>form page</title></head> |
| 895 | <body> |
| 896 | <form method="POST" id="file_upload_form" |
| 897 | enctype="multipart/form-data"> |
| 898 | <input name="files-field" type="file" value="some/path/file.txt" multiple="" /> |
| 899 | <input name="int-field" type="text" value="" /> |
| 900 | <input name="button" type="submit" value="single"> |
| 901 | </form> |
| 902 | </body> |
| 903 | </html> |
| 904 | """ |
| 905 | |
| 906 | |
| 907 | class TestFileUpload(unittest.TestCase): |
no outgoing calls
searching dependent graphs…