From efd2c17eba8016710f288fc64a9628a18dd03379 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 30 Aug 2014 18:37:00 -0700 Subject: [PATCH] Don't print out docstrings. --- features/support/overview.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/features/support/overview.rb b/features/support/overview.rb index 493ef6a6..ffe7f92c 100644 --- a/features/support/overview.rb +++ b/features/support/overview.rb @@ -122,11 +122,6 @@ module Features end def doc_string(string) - return if @options[:no_multiline] || @hide_this_step - s = %{"""\n#{string}\n"""}.indent(@indent) - s = s.split("\n").map{|l| l =~ /^\s+$/ ? '' : l}.join("\n") - @io.puts(format_string(s, @current_step.status)) - @io.flush end def exception(exception, status)