Il seguente codice non funziona con TypeError: 'Mock' object is not iterable
in ImBeingTested.i_call_other_coroutines
perché ho sostituito ImGoingToBeMocked
da un oggetto Mock.Come deridere le coroutine asyncio?
Come posso deridere le coroutine?
class ImGoingToBeMocked:
@asyncio.coroutine
def yeah_im_not_going_to_run(self):
yield from asyncio.sleep(1)
return "sup"
class ImBeingTested:
def __init__(self, hidude):
self.hidude = hidude
@asyncio.coroutine
def i_call_other_coroutines(self):
return (yield from self.hidude.yeah_im_not_going_to_run())
class TestImBeingTested(unittest.TestCase):
def test_i_call_other_coroutines(self):
mocked = Mock(ImGoingToBeMocked)
ibt = ImBeingTested(mocked)
ret = asyncio.get_event_loop().run_until_complete(ibt.i_call_other_coroutines())
Beh questo è evidente e ora mi sento stupida per aver posto la domanda! Grazie! –
L'ho ampliato con un helper e contenuto in questa risposta: http://stackoverflow.com/a/29905620/23972 –