assertEquals("/module1/action", request.getRecentRequestDispatchPath());
assertNull(response.getRedirectURL());
}
public void testActionRedirect() throws Exception {
DefaultDispatcher dispatcher = new DefaultDispatcher(module1);
DispatchConfig dispatch = new DynamicDispatchConfig(null, "/action", true);
TestResponse response = new TestResponse(false);
dispatcher.dispatch(request, response, dispatch);
assertNull(request.getRecentRequestDispatchPath());
assertEquals("encodeRedirect(/context/module1/action)", response.getRedirectURL());
}