(self)
| 928 | app.get('/').forms["file_upload_form"].upload_fields() |
| 929 | |
| 930 | def test_upload_without_file(self): |
| 931 | app = webtest.TestApp(SingleUploadFileApp()) |
| 932 | upload_form = app.get('/').forms["file_upload_form"] |
| 933 | upload_form.submit() |
| 934 | |
| 935 | def test_file_upload_with_filename_only(self): |
| 936 | uploaded_file_name = os.path.join(os.path.dirname(__file__), |
nothing calls this directly
no test coverage detected