(self)
| 2224 | self.assertEqual(f([1, 2.0]), {}) |
| 2225 | |
| 2226 | def test_patma_208(self): |
| 2227 | def f(w): |
| 2228 | match w: |
| 2229 | case x: |
| 2230 | out = locals() |
| 2231 | del out["w"] |
| 2232 | return out |
| 2233 | self.assertEqual(f(42), {"x": 42}) |
| 2234 | self.assertEqual(f((1, 2)), {"x": (1, 2)}) |
| 2235 | self.assertEqual(f(None), {"x": None}) |
| 2236 | |
| 2237 | def test_patma_209(self): |
| 2238 | def f(w): |
nothing calls this directly
no test coverage detected