@Test
public void handlesControllerAndAction_OnePathParam_AnotherExists() {
String pathInfo = "/cntrl/actn/123";
when(router.route(pathInfo))
.thenReturn(new MojaveRoute("cntrl", "actn", ":id"));
paramMap.put("name", new String[]{"tom"});
RoutedRequest routed = newRouter(pathInfo).route();
assertEquals("cntrl", routed.getController());