Skip to content

Instantly share code, notes, and snippets.

@bdkosher
Created September 26, 2014 16:24
Show Gist options
  • Save bdkosher/dafe3bd696cc9ca5fe1d to your computer and use it in GitHub Desktop.
Save bdkosher/dafe3bd696cc9ca5fe1d to your computer and use it in GitHub Desktop.
Unroll descriptions - "Idiomatic Spock" by Rob Fletcher - http://youtu.be/RuTupC0I59M?t=12m26s
@Unroll
def "the string '#string' is #description"() {
expect:
string.isInteger() == expected
where:
string | expected
"ABC" | false
"123" | true
"1.2" | false
"1 2" | false
"12a" | false
description = expected ? "an integer" : "not an integer"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment