(result, msg)
| 556 | class TestAssertionWarnings: |
| 557 | @staticmethod |
| 558 | def assert_result_warns(result, msg) -> None: |
| 559 | result.stdout.fnmatch_lines(["*PytestAssertRewriteWarning: %s*" % msg]) |
| 560 | |
| 561 | def test_tuple_warning(self, pytester: Pytester) -> None: |
| 562 | pytester.makepyfile( |
no test coverage detected