Fix the custom Cucumber output.

This commit is contained in:
Parker Moore 2014-08-30 19:28:37 -07:00
parent efd2c17eba
commit f9bc50e010
1 changed files with 1 additions and 33 deletions

View File

@ -34,6 +34,7 @@ module Features
end end
def after_features(features) def after_features(features)
@io.puts
print_summary(features) print_summary(features)
end end
@ -73,18 +74,6 @@ module Features
print_feature_element_name(keyword, name, file_colon_line, source_indent) print_feature_element_name(keyword, name, file_colon_line, source_indent)
end end
def before_examples_array(examples_array)
end
def examples_name(keyword, name)
end
def before_outline_table(outline_table)
end
def after_outline_table(outline_table)
end
def scenario_name(keyword, name, file_colon_line, source_indent) def scenario_name(keyword, name, file_colon_line, source_indent)
print_feature_element_name(keyword, name, file_colon_line, source_indent) print_feature_element_name(keyword, name, file_colon_line, source_indent)
end end
@ -121,33 +110,12 @@ module Features
@io.print CHARS[status] @io.print CHARS[status]
end end
def doc_string(string)
end
def exception(exception, status) def exception(exception, status)
return if @hide_this_step return if @hide_this_step
print_exception(exception, status, @indent) print_exception(exception, status, @indent)
@io.flush @io.flush
end end
def before_multiline_arg(multiline_arg)
end
def after_multiline_arg(multiline_arg)
end
def before_table_row(table_row)
end
def after_table_row(table_row)
end
def after_table_cell(cell)
end
def table_cell_value(value, status)
end
private private
def print_feature_element_name(keyword, name, file_colon_line, source_indent) def print_feature_element_name(keyword, name, file_colon_line, source_indent)