I am learning to mock in python but I am not even able to get the basic mocking working. Please give your suggestion to fix the below code snippet..
from mock import patch
def dec_print(msg)
print("+++ " + msg)
@patch("print", dec_print)
def fun():
print("Hello");
fun()
Thanks Jude
Aucun commentaire:
Enregistrer un commentaire