Exemplo n.º 1
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     assert fun(*args) == x
Exemplo n.º 2
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     assert fun(*args) == x
Exemplo n.º 3
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     self.assertEqual(fun(*args), x)
Exemplo n.º 4
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     self.assertEqual(fun(*args), x)