Ejemplo n.º 1
0
 def test_instagram_time_is_1(self, time):
     time.return_value = 1
     epoch = 0
     guoidvalue = instagram("charsyam", epoch)
     self.assertEqual(4195516416, guoidvalue)
Ejemplo n.º 2
0
 def test_instagram_time_is_1_and_epoch_is_1(self, time):
     time.return_value = 1
     epoch = 1
     guoidvalue = instagram("charsyam", epoch)
     self.assertEqual(1212416, guoidvalue)
Ejemplo n.º 3
0
 def test_instagram_time_is_0(self, time):
     time.return_value = 0
     epoch = 0
     guoidvalue = instagram("charsyam2", epoch)
     self.assertEqual(3186688, guoidvalue)