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