Module Spec::Story::Runner
In: lib/spec/story/runner/plain_text_story_runner.rb
lib/spec/story/runner/scenario_collector.rb
lib/spec/story/runner/scenario_runner.rb
lib/spec/story/runner/story_mediator.rb
lib/spec/story/runner/story_parser.rb
lib/spec/story/runner/story_runner.rb
lib/spec/story/runner.rb

Methods

Classes and Modules

Class Spec::Story::Runner::IllegalStepError
Class Spec::Story::Runner::PlainTextStoryRunner
Class Spec::Story::Runner::ScenarioCollector
Class Spec::Story::Runner::ScenarioRunner
Class Spec::Story::Runner::StoryMediator
Class Spec::Story::Runner::StoryParser
Class Spec::Story::Runner::StoryRunner

Public Class methods

[Source]

    # File lib/spec/story/runner.rb, line 51
51:         def dry_run
52:           run_options.dry_run
53:         end

Use this to register a customer output formatter.

[Source]

    # File lib/spec/story/runner.rb, line 36
36:         def register_listener(listener)
37:           story_runner.add_listener(listener) # run_started, story_started, story_ended, #run_ended
38:           world_creator.add_listener(listener) # found_scenario, step_succeeded, step_failed, step_failed
39:           scenario_runner.add_listener(listener) # scenario_started, scenario_succeeded, scenario_pending, scenario_failed
40:         end

[Validate]