private View standard;
@Test
public void testDefaultJsonView() throws Exception {
List<ResourceInfo> resources = new ArrayList<ResourceInfo>();
resources.add(new ResourceInfo("/local", RequestMethod.GET));
resources.add(new ResourceInfo("/jobs/{jobName}.json", RequestMethod.GET, "foo"));
model.put("resources", resources);
model.put("baseUrl", "http://localhost:8080/springsource");
standard.render(model, request, response);
String content = response.getContentAsString();
// System.err.println(content);