hacking away

This commit is contained in:
Tom Gardham-Pallister
2017-02-13 18:51:47 +00:00
parent 95fc687e93
commit 159969483b
4 changed files with 28 additions and 18 deletions

View File

@ -21,7 +21,7 @@ namespace Ocelot.AcceptanceTests
}
[Fact]
public void should_return_response_200_and_foward_claim_as_header()
public void should_return_server_error()
{
var configuration = new FileConfiguration
{
@ -29,9 +29,12 @@ namespace Ocelot.AcceptanceTests
{
new FileReRoute
{
DownstreamPathTemplate = "http://localhost:53876/",
DownstreamPathTemplate = "/",
UpstreamPathTemplate = "/",
UpstreamHttpMethod = "Get"
UpstreamHttpMethod = "Get",
DownstreamPort = 53876,
DownstreamHost = "localhost",
DownstreamScheme = "http",
}
}
};