# File test/test_spider.rb, line 190
  def test_lots_of_data_with_large_names
    g = Gruff::Spider.new(10)
    @datasets = [[:anteaters, [1]], [:bulls, [5]], [:cats, [3]], [:dogs, [9]], [:elephants, [4]],
                 [:frogs, [7]], [:giraffes, [0]], [:hamsters, [4]], [:iguanas, [6]], 
                 [:jaguar, [0]], [:kangaroo, [4]], [:locust, [8]]]
   
    @datasets.each do |data|
      g.data(data[0], data[1])
    end
                 
    g.title = "Zoo Inventory"
    g.write("test/output/spider_lots_of_data_normal_names.png")
  end