
org.scalatra.test.specs.ScalatraSpecification.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatra-specs Show documentation
Show all versions of scalatra-specs Show documentation
Specs support for the Scalatra test framework
The newest version!
package org.scalatra.test.specs
import org.scalatra.test.ScalatraTests
import org.specs._
/**
* A Specification that starts the tester before the specification and stops it afterward.
*/
trait ScalatraSpecification extends Specification with ScalatraTests {
doBeforeSpec { start() }
doAfterSpec { stop() }
shareVariables()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy