Skip to content

Instantly share code, notes, and snippets.

@oxlade39
Created September 20, 2011 21:33
Show Gist options
  • Save oxlade39/1230449 to your computer and use it in GitHub Desktop.
Save oxlade39/1230449 to your computer and use it in GitHub Desktop.
object HomepageSpec extends ScalatraSpecification {
addFilter(classOf[ScalatraEntrypoint], "/*")
"Homepage" should {
"respond to GET /" in {
get("/") {
status mustEqual(200)
}
}
"prompt to login" in {
get("/") {
body must include ("please log in")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment