예제 #1
0
 def test_str_with_args(self):
     e = GeneralException("foo", "bar")
     self.assertEqual(str(e), "General Exception: ('foo', 'bar')")
예제 #2
0
 def test_info(self):
     e = GeneralException()
     self.assertEqual(e.info(), {"code": 100, "message": str(e)})
예제 #3
0
 def test_str(self):
     e = GeneralException()
     self.assertEqual(str(e), "General Exception: ()")