(self)
| 234 | ) |
| 235 | |
| 236 | def test_parse_from_environ(self): |
| 237 | parser = FormDataParser() |
| 238 | stream, _, _ = parser.parse_from_environ({"wsgi.input": ""}) |
| 239 | assert stream is not None |
| 240 | |
| 241 | |
| 242 | # TODO Fix the ResourceErrors, somewhere in here a SpooledTemporaryFile is not |
nothing calls this directly
no test coverage detected