try_unbind() removes keys from context.
(self)
| 116 | build_bl().bind(x=42, y=23).unbind("x", "z") |
| 117 | |
| 118 | def test_try_unbind(self): |
| 119 | """ |
| 120 | try_unbind() removes keys from context. |
| 121 | """ |
| 122 | b = build_bl().bind(x=42, y=23).try_unbind("x", "y") |
| 123 | |
| 124 | assert {} == b._context |
| 125 | |
| 126 | def test_try_unbind_fail(self): |
| 127 | """ |
nothing calls this directly
no test coverage detected