dimanche 1 mars 2015

my struggle with python mock

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