【发布时间】:2018-02-17 15:29:40
【问题描述】:
我在方法路由、状态、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
}
}
}
}
【问题讨论】:
标签: scala playframework-2.0 specs2