assertScoping("on");
}
@Test public void
gracefullyClosesConnectionAndRemovesFromScopeWhenAnErrorOccurs() throws Exception {
connectionScope.connectTo(crashWith(new HttpException("Boom!")));
try {
connectionScope.handle(request, response);
fail("HttpException did not bubble up");
} catch (HttpException expected) {