Flowdock
method

run_story_ignoring_scenarios

Importance_0
run_story_ignoring_scenarios(story, world) private

No documentation

This method has no description. You can help the RSpec community by adding new notes.

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
Register or log in to add new notes.