I want to create few specifications that interoperate with database.
class DocumentSpec extends mutable.Specification with BeforeAfterExample { sequential d
I suppose you are using SBT? If so, check the documentation: http://www.scala-sbt.org/release/docs/Detailed-Topics/Parallel-Execution
The relevant SBT setting is parallelExecution. Add this to your project definition:
parallelExecution
parallelExecution in Test := false