(self)
| 1075 | "<p>with contents: 'content'</p>") |
| 1076 | |
| 1077 | def test_post_upload_files(self): |
| 1078 | app = webtest.TestApp(SingleUploadFileApp()) |
| 1079 | resp = app.post( |
| 1080 | '/', |
| 1081 | upload_files=[('file', 'filename', b'content')] |
| 1082 | ) |
| 1083 | resp.mustcontain("<p>You selected 'filename'</p>", |
| 1084 | "<p>with contents: 'content'</p>") |
| 1085 | |
| 1086 | def test_post_upload_empty_files(self): |
| 1087 | app = webtest.TestApp(SingleUploadFileApp()) |
nothing calls this directly
no test coverage detected