예제 #1
0
파일: test_result.py 프로젝트: wido/celery
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     assert fun(*args) == x
예제 #2
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     assert fun(*args) == x
예제 #3
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     self.assertEqual(fun(*args), x)
예제 #4
0
 def test_reduce_direct(self):
     x = AsyncResult('1', app=self.app)
     fun, args = x.__reduce__()
     self.assertEqual(fun(*args), x)