(self)
| 1064 | ) |
| 1065 | |
| 1066 | def test_goto_upload_files(self): |
| 1067 | app = webtest.TestApp(SingleUploadFileApp()) |
| 1068 | resp = app.get('/') |
| 1069 | resp = resp.goto( |
| 1070 | '/', |
| 1071 | method='post', |
| 1072 | upload_files=[('file', 'filename', b'content')] |
| 1073 | ) |
| 1074 | resp.mustcontain("<p>You selected 'filename'</p>", |
| 1075 | "<p>with contents: 'content'</p>") |
| 1076 | |
| 1077 | def test_post_upload_files(self): |
| 1078 | app = webtest.TestApp(SingleUploadFileApp()) |
nothing calls this directly
no test coverage detected