fork download
  1. import random
  2. from unittest.mock import Mock, ANY
  3.  
  4. def mymethod(a, handler):
  5. handler(a, random.random())
  6.  
  7. def test_mymethod():
  8. handler = Mock()
  9. mymethod(5, handler)
  10. handler.assert_any_call(5, ANY)
  11.  
  12. test_mymethod()
Success #stdin #stdout 0.62s 27696KB
stdin
Standard input is empty
stdout
Standard output is empty