(self)
| 1333 | |
| 1334 | class AssertWarnsMessageTests(SimpleTestCase): |
| 1335 | def test_context_manager(self): |
| 1336 | with self.assertWarnsMessage(UserWarning, "Expected message"): |
| 1337 | warnings.warn("Expected message", UserWarning) |
| 1338 | |
| 1339 | def test_context_manager_failure(self): |
| 1340 | msg = "Expected message' not found in 'Unexpected message'" |
nothing calls this directly
no test coverage detected