def test_it_should_return_the_correct_reciprocated_list(self):
     amico = Amico(redis_connection=self.redis_connection)
     amico.follow(1, 11)
     amico.follow(11, 1)
     amico.reciprocated(1).should.equal(["11"])
     amico.reciprocated(11).should.equal(["1"])