# File lib/rest_test.rb, line 29
  def bold str
    if @output_html
      str.gsub! /</, "&lt;"
      str.gsub! />/, "&gt;"
      "<b>#{str}</b>"
    else
      "\033[1m#{str}\033[0m"
    end
  end