Hi,You cannot mix implicit contexts and XXXExample traits. The fix is to add the AroundExample trait and define the around method:
trait SquerylSpecification extends BeforeExample with AroundExample { self: mutable.Specification =>sequentialdef around[T <% Result](t: =>T) = {println("Start tx")val res = tprintln("End tx")res}.....}