class Cucumber::Formatter::Pretty

def print_background_data

def print_background_data
  @io.puts
  background = gherkin_document.feature.children.first.background
  @source_indent = calculate_source_indent_for_ast_node(background) if options[:source]
  print_comments(background.location.line, 2)
  print_background_line(background)
  print_description(background.description)
  @io.flush
end