Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to Cucumber and BDD. I was wondering if there is a good way to specify a condition that must be checked after every step. For example, suppose I want to make sure a particular variable x is equal to 5 after every step. I do not want to write the scenario like this:

When something happens
Then x should be 5

When something else happens
Then x should be 5

And so on...

Is there a less repetitive way of accomplishing this? I am aware of Background and hooks, but these seem to be for setting up the environment rather than verification.

share|improve this question

1 Answer

up vote 1 down vote accepted

Use the AfterStep-hook (see https://github.com/cucumber/cucumber/wiki/Hooks). This code will run after every step.

Alternatively you can decorate the scenarios with tags an just have the hook run for after steps in the tagged scenarios

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.