Пример #1
0
 def ping(self):
     raise GeneralException("Kaboom!!!")
Пример #2
0
 def test_response(self):
     e = GeneralException()
     self.assertEqual(e.response(), {"status": e.info()})
Пример #3
0
 def test_str_with_args(self):
     e = GeneralException("foo", "bar")
     self.assertEqual(str(e), "General Exception: ('foo', 'bar')")
Пример #4
0
 def test_info(self):
     e = GeneralException()
     self.assertEqual(e.info(), {"code": 100, "message": str(e)})
Пример #5
0
 def test_str(self):
     e = GeneralException()
     self.assertEqual(str(e), "General Exception: ()")