summaryrefslogtreecommitdiff
path: root/tests/test_config_middleware.py
blob: 868e75f79539ed2384cecfc488766d2e4ed48161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from nose.tools import assert_raises
from paste.deploy.config import ConfigMiddleware
from paste.fixture import TestApp

class Bug(Exception): pass

def app_with_exception(environ, start_response):
    def cont():
        yield "something"
        raise Bug
    start_response('200 OK', [('Content-type', 'text/html')])
    return cont()

def test_error():
    wrapped = ConfigMiddleware(app_with_exception, {'test': 1})
    test_app = TestApp(wrapped)
    assert_raises(Bug, test_app.get, '/')