Skip to content

Instantly share code, notes, and snippets.

@sebastianbenz
Created January 13, 2014 21:31
Show Gist options
  • Save sebastianbenz/8408561 to your computer and use it in GitHub Desktop.
Save sebastianbenz/8408561 to your computer and use it in GitHub Desktop.
Defining helper classes in your specs.
describe "Saying Hello"{
fact new Greeter("Sebastian").sayHello => "Hello Sebastian"
}
@Data class Greeter{
String name
def sayHello(){
"Hello " + name
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment