Created
September 26, 2014 16:24
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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