Flowdock
method

story_started

Importance_0
story_started(title, narrative) public

No documentation

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

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