method
run_story_ignoring_scenarios
1.1.4 -
Show latest stable
-
0 notes -
Class: Spec::Story::Runner::ScenarioRunner
- 1.1.4 (0)
- 1.1.12 (0)
- 1.2.0
- 1.2.8
- 1.3.0
- 1.3.1
- What's this?
run_story_ignoring_scenarios(story, world)
private
Hide source
# File lib/spec/story/runner/scenario_runner.rb, line 40 def run_story_ignoring_scenarios(story, world) class << world def Scenario(name, &block) # do nothing end end story.run_in(world) class << world remove_method(:Scenario) end end