// Read here for optional jars and dependencies
libraryDependencies ++= Seq("org.specs2" %% "specs2-core" % "3.9.5" % "test")
scalacOptions in Test ++= Seq("-Yrangepos")
import org.specs2._
class QuickStartSpec extends Specification { def is = s2"""
This is my first specification
it is working $ok
really working! $ok
"""
}
[info] QuickStartSpec [info] [info] This is my first specification [info] + it is working [info] + really working! [info] [info] Total for specification QuickStartSpec [info] Finished in 23 ms [info] 2 examples, 0 failure, 0 error