Classes | |
class | TestApp |
class | TestAppError |
class | TestAppXhrParam |
class | TestCookies |
class | TestEnviron |
class | TestFieldOrder |
class | TestFragments |
class | TestParserFeature |
class | TestPasteVariables |
class | TestScriptName |
class | TestStatus |
class | TestWSGIProxy |
Functions | |
def | application |
def | get_submit_app |
Variables | |
string | deform_upload_fields_text |
def tests.test_app.application | ( | environ, | |
start_response | |||
) |
Definition at line 572 of file test_app.py.
def tests.test_app.get_submit_app | ( | form_id, | |
form_fields_text | |||
) |
Definition at line 413 of file test_app.py.
00001 """ 00002 <input type="hidden" name="_charset_" /> 00003 <input type="hidden" name="__formid__" value="deform"/> 00004 <input type="text" name="title" value="" id="deformField1"/> 00005 <input type="hidden" name="__start__" value="fileupload:mapping"/> 00006 <input type="file" name="fileupload" id="deformField2"/> 00007 <input type="hidden" name="__end__" value="fileupload:mapping"/> 00008 <textarea id="deformField3" name="description" rows="10" cols="60"> 00009 </textarea> 00010 <button 00011 id="deformSubmit" 00012 name="Submit" 00013 type="submit" 00014 value="Submit"> 00015 Submit 00016 </button> 00017 """
Definition at line 394 of file test_app.py.