I'm upgrading from Specs2 2.3.12
to 3.6.1
and am having trouble figuring out which dependency to include in build.sbt
to pull in the AroundOutside
trait.
I've included all the dependencies listed in the Installation doc but still get object AroundOutside is not a member of package org.specs2.specification
.
The AroundOutside
trait is documented here.
AroundOutside
has been removed fromspecs2
in 3.x. You can use theForeach[T]
trait instead to cover similar functionality.