Skip to content

Instantly share code, notes, and snippets.

@chbaranowski
Last active August 29, 2015 14:06
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 chbaranowski/c4ded814c7b2e42599e6 to your computer and use it in GitHub Desktop.
Save chbaranowski/c4ded814c7b2e42599e6 to your computer and use it in GitHub Desktop.
Spock Old Feature
import spock.lang.*
class StackSpec extends Specification {
@Subject stack = new Stack()
def "push a element into a stack"(element) {
when:
stack.push(element)
then:
stack.size() == old(stack.size()) + 1
and:
stack.contains(element)
where:
element = [name: "Tester"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment