method
with_steps_for
1.1.12 -
Show latest stable
-
0 notes -
Class: Spec::Story::Extensions::Main
- 1.1.4 (0)
- 1.1.12 (0)
- 1.2.0
- 1.2.8
- 1.3.0
- 1.3.1
- What's this?
with_steps_for(*tags, &block)
public
Creates a context for running a Plain Text Story with specific groups of Steps. Also supports adding arbitrary steps that will only be accessible to the Story being run.
Examples
# Run a Story with one group of steps with_steps_for :checking_accounts do run File.dirname(__FILE__) + "/withdraw_cash" end # Run a Story, adding steps that are only available for this Story with_steps_for :accounts do Given "user is logged in as account administrator" run File.dirname(__FILE__) + "/reconcile_accounts" end # Run a Story with steps from two groups with_steps_for :checking_accounts, :savings_accounts do run File.dirname(__FILE__) + "/transfer_money" end # Run a Story with a specific Story extension with_steps_for :login, :navigation do run File.dirname(__FILE__) + "/user_changes_password", :type => RailsStory end