diff options
| author | Tres Seaver <tseaver@palladion.com> | 2014-11-26 15:06:12 -0500 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2014-11-26 15:06:12 -0500 |
| commit | ddf8ee332c91e469b131d661971a99201b2ba1a8 (patch) | |
| tree | 898693760eaa1c4b987ed1a49f14dab4f43a26c0 /docs/narr/MyProject/myproject | |
| parent | ea58f249f89bb9f48b926baf1e4fcc04832db672 (diff) | |
| parent | e9189222be26d7b4979f5af12efa3a269835a332 (diff) | |
| download | pyramid-ddf8ee332c91e469b131d661971a99201b2ba1a8.tar.gz pyramid-ddf8ee332c91e469b131d661971a99201b2ba1a8.tar.bz2 pyramid-ddf8ee332c91e469b131d661971a99201b2ba1a8.zip | |
Merge branch 'master' of github.com:Pylons/pyramid
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) |
