Which Specs2 dependency contains AroundOutside?

48 views Asked by At

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.

1

There are 1 answers

2
Eric On BEST ANSWER

AroundOutside has been removed from specs2 in 3.x. You can use the Foreach[T] trait instead to cover similar functionality.