Remove obsolete test.

This commit is contained in:
Drew Raines 2013-03-04 15:22:40 -06:00 committed by Drew Raines
parent dc28151ad7
commit a8d52b58b6
1 changed files with 0 additions and 9 deletions

View File

@ -78,13 +78,4 @@ public class SitePluginTests extends AbstractNodesTests {
assertThat(response.errorCode(), equalTo(RestStatus.OK.getStatus()));
assertThat(response.response(), containsString("<title>Dummy Site Plugin</title>"));
}
@Test
public void testListSitePlugin() throws Exception {
// We use an HTTP Client to test redirection
HttpClientResponse response = httpClient("test").request("/_plugin/");
assertThat(response.errorCode(), equalTo(RestStatus.OK.getStatus()));
assertThat(response.response(), containsString("dummy"));
assertThat(response.response(), containsString("anotherplugin"));
}
}