Don't print out docstrings.

This commit is contained in:
Parker Moore 2014-08-30 18:37:00 -07:00
parent f90d8db827
commit efd2c17eba
1 changed files with 0 additions and 5 deletions

View File

@ -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)