(self)
| 2326 | self.assertEqual(set(f()), {"abc"}) |
| 2327 | |
| 2328 | def test_patma_218(self): |
| 2329 | def f(): |
| 2330 | match ..., ...: |
| 2331 | case a, b: |
| 2332 | return locals() |
| 2333 | self.assertEqual(set(f()), {"a", "b"}) |
| 2334 | |
| 2335 | def test_patma_219(self): |
| 2336 | def f(): |
nothing calls this directly
no test coverage detected