diff options
| author | Matt Russell <matthew.russell@horizon5.org> | 2014-11-19 23:06:17 +0000 |
|---|---|---|
| committer | Matt Russell <matthew.russell@horizon5.org> | 2014-11-25 19:50:22 +0000 |
| commit | 138706a24bd8e7051c60942c2789d8c16b4ca2ed (patch) | |
| tree | 8891fc1d464743569340ad3c60ceeda04410e16a /docs/narr/MyProject/myproject | |
| parent | 2b59a35c4b5ec0f7052aacce3ffa66ce74cbae56 (diff) | |
| download | pyramid-138706a24bd8e7051c60942c2789d8c16b4ca2ed.tar.gz pyramid-138706a24bd8e7051c60942c2789d8c16b4ca2ed.tar.bz2 pyramid-138706a24bd8e7051c60942c2789d8c16b4ca2ed.zip | |
Include code examples for integration and functional tests in docs #1001
Wrap lines as per convention.
Diffstat (limited to 'docs/narr/MyProject/myproject')
| -rw-r--r-- | docs/narr/MyProject/myproject/tests.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/docs/narr/MyProject/myproject/tests.py b/docs/narr/MyProject/myproject/tests.py index 64dcab1d5..8c60407e5 100644 --- a/docs/narr/MyProject/myproject/tests.py +++ b/docs/narr/MyProject/myproject/tests.py @@ -15,3 +15,40 @@ class ViewTests(unittest.TestCase): request = testing.DummyRequest() info = my_view(request) self.assertEqual(info['project'], 'MyProject') + +class ViewIntegrationTests(unittest.TestCase): + def setUp(self): + """ This sets up the application registry with the + registrations your application declares in its ``includeme`` + function. + """ + self.config = testing.setUp() + self.config.include('myproject') + + def tearDown(self): + """ Clear out the application registry """ + testing.tearDown() + + def test_my_view(self): + from myproject.views import my_view + request = testing.DummyRequest() + result = my_view(request) + self.assertEqual(result.status, '200 OK') + body = result.app_iter[0] + self.assertTrue('Welcome to' in body) + self.assertEqual(len(result.headerlist), 2) + self.assertEqual(result.headerlist[0], + ('Content-Type', 'text/html; charset=UTF-8')) + self.assertEqual(result.headerlist[1], ('Content-Length', + str(len(body)))) + +class FunctionalTests(unittest.TestCase): + def setUp(self): + from myproject import main + app = main({}) + from webtest import TestApp + self.testapp = TestApp(app) + + def test_root(self): + res = self.testapp.get('/', status=200) + self.assertTrue('Pyramid' in res.body) |
