(self, body)
| 149 | class TestResponseFormAttribute(unittest.TestCase): |
| 150 | |
| 151 | def callFUT(self, body): |
| 152 | app = DebugApp(form=to_bytes(body)) |
| 153 | return webtest.TestApp(app) |
| 154 | |
| 155 | def test_no_form(self): |
| 156 | app = self.callFUT('<html><body></body></html>') |
no test coverage detected