Hi,

I'm sure I am just doing something silly, but I'm trying to run 
"Pkg.test("HttpServer"), but my tests are failing. I traced the problem 
down to 

ret = Requests.get("http://localhost:8000/hello/travis";)

The handler is receiving the request, but if I look at the req.resource, it 
is the full url, i.e.

req.resource = "http://localhost/hello/travis";

but I think it should just be

req.resource = "/hello/travis"

Any ideas? Why is the req.resource not just "/hello/travis"?

I'm also a little confused why the ":8000" isn't there, but that is 
secondary.

I appreciate any help. Thanks.

Reply via email to