(self)
| 29 | |
| 30 | class TutorialFunctionalTests(unittest.TestCase): |
| 31 | def setUp(self): |
| 32 | from tutorial import main |
| 33 | app = main({}) |
| 34 | from webtest import TestApp |
| 35 | |
| 36 | self.testapp = TestApp(app) |
| 37 | |
| 38 | def test_home(self): |
| 39 | res = self.testapp.get('/', status=200) |