我收到方法路线,状态,contentAsJson的错误(重载方法)。有什么想法吗?
import play.api.test._
import play.api.test.Helpers
import play.api.libs.json.Json
class ItemsSpec extends PlaySpecification {
"Items controller" should {
"list items" in new WithApplication {
route(FakeRequest(controllers.routes.Items.list())) match {
case Some(response) =>
status(response) must equalTo (OK)
contentAsJson(response) must equalTo (Json.arr())
case None => failure
}
}
}
}
答案 0 :(得分:0)