method
story_started
1.1.4 -
Show latest stable
- Class:
Spec::Runner::Formatter::Story::PlainTextFormatter
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