scala - spray.io upgrade causes missing mock library in specs2 -


i use specs2 in spray.io project. works fine , when use following versions.

val akkav = "2.3.6" val sprayv = "1.3.2" val specs2v = "2.3.11" 

however, tried upgrade akka , spray version following.

val akkav = "2.3.9" val sprayv = "1.3.3" 

when run tests now, following error.

object mock not member of package org.specs2

i'm not sure how spray or akka versions affect specs2, somehow find behaviour odd. tried different versions of specs2, latest one, error persists.

you need add specs2-mock build.


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -