}
@Test
public void testResponse() throws Exception {
Responder responder = new DisabledResponder();
SimpleResponse response = (SimpleResponse) responder.makeResponse(context, new MockRequest());
assertEquals(200, response.getStatus());
String body = response.getContent();
assertHasRegexp("<html>", body);
assertHasRegexp("<body", body);
assertHasRegexp("that this action should be disabled.", body);
}