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