运行Scala规范获取错误..无法找到参数ta

时间:2016-02-03 18:29:32

标签: scala akka spray scalatest specs2

我有一些延伸Actor的东西(因为里面使用了一些演员参考)

trait DemoService extends Actor {

  def actorRefFactory = context
  implicit def executionContext = actorRefFactory.dispatcher

  val demoRoute = {
    get {
      pathSingleSlash {
        complete(index)
      } ~
      path("ping") {
        complete("PONG!")
      }

现在我正在编写Spec文件。

TestServiceSpec extends FlatSpec with Spec2RouteTest with DemoService 

gettting error

could not find implicit value for parameter ta: TestServiceSpec 
.this.TildeArrow[spray.routing.RequestContext,Unit]"

如果我使用ScalaTestRouteTest,我也会收到此错误。

0 个答案:

没有答案