Guest User

Untitled

a guest
Nov 14th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. def test_something():
  2. original_func = my_module.my_func
  3. if 'MAKE_EXTERNAL_REQUESTS' not in os.environ:
  4. # Monkey patch manually
  5. my_module.my_func = lambda x: x
  6.  
  7. # do some logic that depends on my_module.my_func
  8. ...
  9.  
  10. # Unpatch
  11. my_module.my_func = original_func
Add Comment
Please, Sign In to add comment