1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
import pytest
from paste.deploy.config import ConfigMiddleware
class Bug(Exception):
pass
def app_with_exception(environ, start_response):
def cont():
yield b"something"
raise Bug
start_response('200 OK', [('Content-type', 'text/html')])
return cont()
def test_error():
# This import is conditional due to Paste not yet working on py3k
try:
from paste.fixture import TestApp
except ImportError:
raise pytest.skip('unable to import TestApp')
wrapped = ConfigMiddleware(app_with_exception, {'test': 1})
test_app = TestApp(wrapped)
pytest.raises(Bug, test_app.get, '/')
|