Skip to content

Instantly share code, notes, and snippets.

@jeroenr
Created December 3, 2015 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeroenr/372209d9aa446a1640f2 to your computer and use it in GitHub Desktop.
Save jeroenr/372209d9aa446a1640f2 to your computer and use it in GitHub Desktop.
Mark tests as TODO . Tests will be skipped and there will be a TODO list in SBT test output
import org.specs2.mutable.Specification
/**
* Created by jero on 3-12-15.
*/
class FooTest extends Specification {
"FooTest" should {
"doSomethingAwesome" >> todo
"doSomethingEvenBetter" >> todo
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment