Home - RiverGlide/CukeSalad GitHub Wiki

CukeSalad is a Cucumber extension that allows you to focus on the task at hand - expressing examples, the roles involved in those examples and what those roles can do with the product under development.

You can now see CukeSalad features on relishapp.com

##Synopsis

There are no step-definitions required for this to work:

When I attempt to add the number '1' to the number '2'

You just write a Task:

in_order_to "add", the_number: :first_number, to_the_number: :second_number do
  enter the :first_number
  press :add
  enter the :second_number
  press :equals
end