context '#insert' do
    it 'increases size by one if key not present' do
      old_size = hash_table.size
      hash_table.insert(1, '1')
      expect(hash_table.size).to eql(old_size + 1)