Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6

script:
"./gradlew check -i"
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ public void run() throws IOException {

Request putRequest = Request.Put(remoteUrl("/proxy")).bodyString("proxy", ContentType.DEFAULT_TEXT);
assertThat(helper.executeAsString(putRequest), is("put_proxy"));

}
});
running(server, new Runnable() {
@Override
public void run() throws IOException {
Request deleteRequest = Request.Delete(remoteUrl("/proxy"));
assertThat(helper.executeAsString(deleteRequest), is("delete_proxy"));

Expand All @@ -99,7 +103,11 @@ public void run() throws IOException {

Request optionsRequest = Request.Options(remoteUrl("/proxy"));
assertThat(helper.executeAsString(optionsRequest), is("options_proxy"));

}
});
running(server, new Runnable() {
@Override
public void run() throws IOException {
Request traceRequest = Request.Trace(remoteUrl("/proxy"));
assertThat(helper.executeAsString(traceRequest), is("trace_proxy"));
}
Expand Down