You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 21, 2019. It is now read-only.
aslakhellesoy edited this page May 25, 2011
·
2 revisions
How about some Groovy step definitions for Cuke4Duke?
this.metaClass.mixin(cuke4duke.GroovyDsl)
Given(~/I have entered (\d+) into the calculator/) { int number ->
calc = new calc.Calculator()
calc.push number
}
Groovy Step Definitions should go into features/step_definitions/*.groovy. Check out the Groovy example project to learn more.