Skip to content

Instantly share code, notes, and snippets.

@xconnecting
Created January 23, 2014 02: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 xconnecting/8571655 to your computer and use it in GitHub Desktop.
Save xconnecting/8571655 to your computer and use it in GitHub Desktop.
[Spock] SampleSpec (Success)
import spock.lang.Specification
class SampleSpec extends Specification {
def "test sample"() {
expect:
def value = 2
value == 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment