assertRaises is almost always lazy, and should be avoided. The only desirable use of unittest.assertRaises is: with self.assertRaises(ValueError) as cm: ...
確定! 回上一頁