try_unbind() does nothing if the key is missing.
(self)
| 124 | assert {} == b._context |
| 125 | |
| 126 | def test_try_unbind_fail(self): |
| 127 | """ |
| 128 | try_unbind() does nothing if the key is missing. |
| 129 | """ |
| 130 | b = build_bl().bind(x=42, y=23).try_unbind("x", "z") |
| 131 | |
| 132 | assert {"y": 23} == b._context |
| 133 | |
| 134 | |
| 135 | class TestProcessing: |
nothing calls this directly
no test coverage detected