summaryrefslogtreecommitdiff
path: root/tests/test_profilemiddleware.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2006-12-01 19:02:53 +0000
committerianb <devnull@localhost>2006-12-01 19:02:53 +0000
commita15b6e7e8e08f6ab8e3299be33fea6aa6771acfd (patch)
tree55cd217874ca5865d01e72159f462e999bc2d541 /tests/test_profilemiddleware.py
parentd348d38217bbb6193698c670b7862bd80bba97bd (diff)
downloadpaste-a15b6e7e8e08f6ab8e3299be33fea6aa6771acfd.tar.gz
Expanded profile test a bit
Diffstat (limited to 'tests/test_profilemiddleware.py')
-rw-r--r--tests/test_profilemiddleware.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_profilemiddleware.py b/tests/test_profilemiddleware.py
index 0ecbef0..944243d 100644
--- a/tests/test_profilemiddleware.py
+++ b/tests/test_profilemiddleware.py
@@ -2,7 +2,7 @@ from paste.fixture import *
from paste.debug.profile import *
def simple_app(environ, start_response):
- start_response('200 OK', [('content-type', 'text/plain')])
+ start_response('200 OK', [('content-type', 'text/html')])
return ['all ok']
def long_func():
@@ -12,7 +12,11 @@ def long_func():
def test_profile():
app = TestApp(ProfileMiddleware(simple_app, {}))
- app.get('/')
+ res = app.get('/')
+ # The original app:
+ res.mustcontain('all ok')
+ # The profile information:
+ res.mustcontain('<pre')
def test_decorator():
value = profile_decorator()(long_func)()