(_warnings: list[type[Warning]])
| 53 | |
| 54 | @staticmethod |
| 55 | def raise_warnings_from_list(_warnings: list[type[Warning]]): |
| 56 | for warn in _warnings: |
| 57 | warnings.warn(f"Warning {warn().__repr__()}", warn) |
| 58 | |
| 59 | def test_pop_finds_exact_match(self): |
| 60 | with pytest.warns((self.ParentWarning, self.ChildWarning)) as record: |
no test coverage detected