(self)
| 65 | resp.mustcontain('a=b', 'c=d', 'e=f') |
| 66 | |
| 67 | def test_request_with_testrequest(self): |
| 68 | req = webtest.TestRequest.blank('/') |
| 69 | resp = self.app.request(req, method='POST') |
| 70 | resp.charset = 'ascii' |
| 71 | assert 'REQUEST_METHOD: POST' in resp.text |
| 72 | |
| 73 | def test_patch(self): |
| 74 | resp = self.app.patch('/') |