class Cucumber::Formatter::ConsoleCounts

def step_count

def step_count
  count = @summary.test_steps.total
  "#{count} step" + (count == 1 ? '' : 's')
end