def test_it_should_return_the_correct_following_page_count(self):
        amico = Amico(redis_connection=self.redis_connection)
        self.__add_reciprocal_followers(amico)

        amico.following_page_count(1).should.equal(1)
        amico.following_page_count(1, 10).should.equal(3)
        amico.following_page_count(1, 5).should.equal(5)