(self)
| 2345 | self.assertEqual(set(f()), {"x", "y"}) |
| 2346 | |
| 2347 | def test_patma_221(self): |
| 2348 | def f(): |
| 2349 | match ...: |
| 2350 | case b as a: |
| 2351 | return locals() |
| 2352 | self.assertEqual(set(f()), {"a", "b"}) |
| 2353 | |
| 2354 | def test_patma_222(self): |
| 2355 | def f(x): |
nothing calls this directly
no test coverage detected