scala
libraryDependencies += "org.scalatra" %% "scalatra-specs2" % "2.8.0" % "test"
scala
import org.scalatra.test.specs2._
class MySpec extends ScalatraSpec {
addServlet(classOf[MyServlet], "/*")
"GET /hello" should {
"return status 200" in {
get("/hello") {
status must_== 200
}
}
"return 'Hello, world!'" in {
get("/hello") {
body must_== "Hello, world!"
}
}
}
}