(self)
| 2317 | self.assertEqual(set(f()), set()) |
| 2318 | |
| 2319 | def test_patma_217(self): |
| 2320 | def f(): |
| 2321 | match ...: |
| 2322 | case abc: |
| 2323 | return locals() |
| 2324 | self.assertEqual(set(f()), {"abc"}) |
| 2325 | |
| 2326 | def test_patma_218(self): |
| 2327 | def f(): |
nothing calls this directly
no test coverage detected