rlisagor / freshen

Clone of the Cucumber BDD framework for Python
GNU General Public License v3.0
354 stars 56 forks source link

small change to make <values> work on the scenario outline name as well #41

Closed rlgomes closed 8 years ago

rlgomes commented 12 years ago

In scenario outlines you can use on any step and to reference an entry from an Examples table defined below the scenario outline but you can't use an reference in the scenario name itself and that leads to the same test executing for different entries in the table without really reflecting the name during execution. With this change you can now make the scenario name dynamic which allows you to easily identify from the name of the test that failed or succeeded which row in the table was being executed at the time.

sleerssen commented 12 years ago

Thank you! This is exactly what I was looking for!