(self)
| 130 | assert r.form["b"] == "2" |
| 131 | |
| 132 | def test_urlencoded_silent_decode(self) -> None: |
| 133 | r = Request.from_values( |
| 134 | data=b"\x80", |
| 135 | content_type="application/x-www-form-urlencoded", |
| 136 | method="POST", |
| 137 | ) |
| 138 | assert not r.form |
| 139 | |
| 140 | def test_missing_multipart_boundary(self): |
| 141 | data = ( |
nothing calls this directly
no test coverage detected