Remove remote shell support

See gh-7044
This commit is contained in:
Stephane Nicoll
2016-10-11 17:59:25 +02:00
parent 66a3df454f
commit c5cc626d48
36 changed files with 5 additions and 2498 deletions

View File

@@ -51,12 +51,6 @@ public class ReproIntegrationTests {
assertThat(this.cli.getOutput()).contains("Hello World");
}
@Test
public void shellDependencies() throws Exception {
this.cli.run("crsh.groovy");
assertThat(this.cli.getHttpOutput()).contains("{\"message\":\"Hello World\"}");
}
@Test
public void dataJpaDependencies() throws Exception {
this.cli.run("data-jpa.groovy");
@@ -67,7 +61,7 @@ public class ReproIntegrationTests {
public void jarFileExtensionNeeded() throws Exception {
this.thrown.expect(IllegalStateException.class);
this.thrown.expectMessage("is not a JAR file");
this.cli.jar("secure.groovy", "crsh.groovy");
this.cli.jar("secure.groovy");
}
}