method

story_started

story_started(title, narrative)
public

No documentation available.

# File lib/spec/runner/formatter/story/plain_text_formatter.rb, line 22
          def story_started(title, narrative)
            @current_story_title = title
            @output.puts "Story: #{title}\n\n"
            narrative.each_line do |line|
              @output.print "  "
              @output.print line
            end
          end