Only supported kwargs are accepted.
(self)
| 54 | raise FormatedError(1, a=2) |
| 55 | |
| 56 | def test_kwargs_unsupported(self): |
| 57 | """Only supported kwargs are accepted.""" |
| 58 | with self.assertRaises(AssertionError): |
| 59 | raise FormatedError(unsupported=2) |
| 60 | |
| 61 | |
| 62 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected