(self)
| 615 | self.assertIs(y, None) |
| 616 | |
| 617 | def test_patma_055(self): |
| 618 | x = iter([1, 2, 3]) |
| 619 | y = None |
| 620 | match x: |
| 621 | case []: |
| 622 | y = 0 |
| 623 | self.assertEqual([*x], [1, 2, 3]) |
| 624 | self.assertIs(y, None) |
| 625 | |
| 626 | def test_patma_056(self): |
| 627 | x = {} |
nothing calls this directly
no test coverage detected