(self)
| 2338 | self.assertEqual(set(f()), {"a", "b"}) |
| 2339 | |
| 2340 | def test_patma_220(self): |
| 2341 | def f(): |
| 2342 | match Point(..., ...): |
| 2343 | case Point(x, y=y): |
| 2344 | return locals() |
| 2345 | self.assertEqual(set(f()), {"x", "y"}) |
| 2346 | |
| 2347 | def test_patma_221(self): |
| 2348 | def f(): |
nothing calls this directly
no test coverage detected