assertThat(route, canHandle(PathAnnotatedController.class, "withoutPath"));
}
@Test
public void findsTheCorrectAnnotatedMethodIfThereIsNoWebMethodAnnotationPresent() throws Exception {
List<Route> routes = parser.rulesFor(new DefaultBeanClass(ClientsController.class));
Route route = getRouteMatching(routes, "/clients");
assertThat(route, canHandle(ClientsController.class, "list"));
}