(self)
| 286 | self.assertEqual(form.submit_fields(), [('textarea', "'foo&bar'")]) |
| 287 | |
| 288 | def test_textarea_emptyfirstline(self): |
| 289 | app = self.callFUT() |
| 290 | res = app.get('/form.html') |
| 291 | form = res.forms.get("textarea_emptyline_form") |
| 292 | self.assertEqual(form.get("textarea").value, "aaa") |
| 293 | self.assertEqual(form.submit_fields(), [('textarea', "aaa")]) |
| 294 | |
| 295 | |
| 296 | class TestFormLint(unittest.TestCase): |
nothing calls this directly
no test coverage detected