cleanup with twill.remove_wsgi_intercept

This commit is contained in:
Ralf Schmitt 2011-09-01 01:08:32 +02:00
parent 7a4a6a2d97
commit 16684872d0
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,13 @@ def pytest_funcarg__root(request):
twill.add_wsgi_intercept("systemexit.de", 80, bottle.default_app)
twill.add_wsgi_intercept("pypi.python.org", 80, lambda: fallback_app)
def cleanup():
twill.remove_wsgi_intercept("localhost", 8080)
twill.remove_wsgi_intercept("systemexit.de", 80)
twill.remove_wsgi_intercept("pypi.python.org", 80)
request.addfinalizer(cleanup)
go("http://localhost:8080/")
return tmpdir