Return two empty dicts suitable for use with parse_multipart_form_data. mypy insists on type annotations for dict literals, so this lets us avoid the verbose types throughout this test.
()
| 26 | |
| 27 | |
| 28 | def form_data_args() -> Tuple[Dict[str, List[bytes]], Dict[str, List[HTTPFile]]]: |
| 29 | """Return two empty dicts suitable for use with parse_multipart_form_data. |
| 30 | |
| 31 | mypy insists on type annotations for dict literals, so this lets us avoid |
| 32 | the verbose types throughout this test. |
| 33 | """ |
| 34 | return {}, {} |
| 35 | |
| 36 | |
| 37 | class TestUrlConcat(unittest.TestCase): |
no outgoing calls
no test coverage detected