# File tasks/bench/feature_builder.rb, line 6
  def step(content, generator)
    @steps << "    Given #{content}"
    if(rand(5) == 0)
      cols = rand(8) + 1
      rows = rand(10)
      rows.times do
        row = "      |"
        cols.times do
          row << generator.table_cell << "|"
        end
        @steps << row
      end
    end
  end