Unbind calls the correct unbind.
(self)
| 364 | assert {"b": 23} == get_context(bl) |
| 365 | |
| 366 | def test_proxies_unbind(self): |
| 367 | """ |
| 368 | Unbind calls the correct unbind. |
| 369 | """ |
| 370 | bl = build_bl().bind(a=42).unbind("a") |
| 371 | |
| 372 | assert {} == get_context(bl) |
| 373 | |
| 374 | def test_proxies_try_unbind(self): |
| 375 | """ |
nothing calls this directly
no test coverage detected