One of my examples now is like below
### 1001.feature
Feature: 1001
1001 is the internal id for QAs to identify case
Scenario: 1001
Given the title is "function1_1001"
.....
### function1.steps
Given /the title is "(.*)"/ do |title|
@title = title
end
Actually the title is generated by the rule "function1_#{scenario_name}". So
ideally it could be written in this way
### 1001.feature
Feature: 1001
1001 is the internal id for QAs to identify case
Scenario: 1001
Given the generated title
.....
### function1.steps
Given /the generated title/ do
@title = "[EMAIL PROTECTED]" #though the variable @scenario_name
isn't available
end
So my question is: is it possible to get the name of the scenario/feature in
the step block?
ps: sorry, last message was sent by mistake.
--
Wei Wei
_______________________________________________
rspec-users mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/rspec-users