예제 #1
0
파일: test_base.py 프로젝트: AlJohri/celery
 def test_default_on_usage_error(self):
     cmd = Command()
     cmd.handle_error = Mock()
     exc = Exception()
     cmd.on_usage_error(exc)
     cmd.handle_error.assert_called_with(exc)
예제 #2
0
 def test_default_on_usage_error(self):
     cmd = Command()
     cmd.handle_error = Mock()
     exc = Exception()
     cmd.on_usage_error(exc)
     cmd.handle_error.assert_called_with(exc)