This is only available in Play 2.3.x, but the MockWS client is available: https://github.com/leanovate/play-mockws
val ws = MockWS { case (GET, "http://dns/url") => Action { Ok("http response") } } await(ws.url("http://dns/url").get()).body == "http response"
source share