Kwargs cannot be combined with args.
(self)
| 49 | self.assertEqual(msg, str(ex)) |
| 50 | |
| 51 | def test_kwargs_only(self): |
| 52 | """Kwargs cannot be combined with args.""" |
| 53 | with self.assertRaises(AssertionError): |
| 54 | raise FormatedError(1, a=2) |
| 55 | |
| 56 | def test_kwargs_unsupported(self): |
| 57 | """Only supported kwargs are accepted.""" |
nothing calls this directly
no test coverage detected