# File lib/Borges/TestCase/LRUCacheTest.rb, line 15
  def test_capacity
    (CACHE_SIZE + 1).times do |i|
      @cache.store(i)
    end

    assert_equal(CACHE_SIZE, @cache.size)
  end