From 75ee95b56bcaca95cbda08a1cf2de8e434f7c29a Mon Sep 17 00:00:00 2001 From: Will Date: Sat, 6 Oct 2018 12:25:46 -0300 Subject: add new tests in the forms and validation in quick tutorial --- docs/quick_tutorial/forms/tutorial/tests.py | 30 +++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'docs/quick_tutorial') diff --git a/docs/quick_tutorial/forms/tutorial/tests.py b/docs/quick_tutorial/forms/tutorial/tests.py index 5a2c40904..f0e39aa38 100644 --- a/docs/quick_tutorial/forms/tutorial/tests.py +++ b/docs/quick_tutorial/forms/tutorial/tests.py @@ -34,3 +34,33 @@ class TutorialFunctionalTests(unittest.TestCase): def test_home(self): res = self.testapp.get('/', status=200) self.assertIn(b'Wiki: View', res.body) + + def test_add_page(self): + res = self.testapp.get('/add', status=200) + self.assertIn(b'

Wiki

', res.body) + + def test_edit_page(self): + res = self.testapp.get('/101/edit', status=200) + self.assertIn(b'

Wiki

', res.body) + + def test_post_wiki(self): + self.testapp.post('/add', { + "title": "New Title", + "body": "

New Body

", + "submit": "submit" + }, status=302) + + res = self.testapp.get('/103', status=200) + self.assertIn(b'

New Title

', res.body) + self.assertIn(b'

New Body

', res.body) + + def test_edit_wiki(self): + self.testapp.post('/102/edit', { + "title": "New Title", + "body": "

New Body

", + "submit": "submit" + }, status=302) + + res = self.testapp.get('/102', status=200) + self.assertIn(b'

New Title

', res.body) + self.assertIn(b'

New Body

', res.body) -- cgit v1.2.3