Esempio n. 1
0
 def test_wait(self):
     res = EagerResult('x', 'x', states.RETRY)
     res.wait()
     self.assertEqual(res.state, states.RETRY)
     self.assertEqual(res.status, states.RETRY)
Esempio n. 2
0
 def test_wait(self):
     res = EagerResult('x', 'x', states.RETRY)
     res.wait()
     assert res.state == states.RETRY
     assert res.status == states.RETRY
Esempio n. 3
0
 def test_wait(self):
     res = EagerResult('x', 'x', states.RETRY)
     res.wait()
     assert res.state == states.RETRY
     assert res.status == states.RETRY
Esempio n. 4
0
 def test_wait(self):
     res = EagerResult('x', 'x', states.RETRY)
     res.wait()
     self.assertEqual(res.state, states.RETRY)
     self.assertEqual(res.status, states.RETRY)