I'm using Play 2.6.x and the test helper for status(result)
has the method:
def status(of: Accumulator[ByteString, Result])(implicit timeout: Timeout, mat: Materializer): Int = status(of.run())
Running tests throws when the compiler can't find the implicit value:
could not find implicit value for parameter mat: akka.stream.Materializer
What is the Materializer -- I'm assuming it's part of Akka-HTTP
And how can I provide one?