(self)
| 1343 | warnings.warn("Unexpected message", UserWarning) |
| 1344 | |
| 1345 | def test_callable(self): |
| 1346 | def func(): |
| 1347 | warnings.warn("Expected message", UserWarning) |
| 1348 | |
| 1349 | self.assertWarnsMessage(UserWarning, "Expected message", func) |
| 1350 | |
| 1351 | def test_special_re_chars(self): |
| 1352 | def func1(): |
nothing calls this directly
no test coverage detected