unbind() removes keys from context.
(self)
| 101 | assert isinstance(b.new(), Wrapper) |
| 102 | |
| 103 | def test_unbind(self): |
| 104 | """ |
| 105 | unbind() removes keys from context. |
| 106 | """ |
| 107 | b = build_bl().bind(x=42, y=23).unbind("x", "y") |
| 108 | |
| 109 | assert {} == b._context |
| 110 | |
| 111 | def test_unbind_fail(self): |
| 112 | """ |