Bind calls the correct bind.
(self)
| 348 | ) |
| 349 | |
| 350 | def test_proxies_bind(self): |
| 351 | """ |
| 352 | Bind calls the correct bind. |
| 353 | """ |
| 354 | bl = build_bl().bind(a=42) |
| 355 | |
| 356 | assert {"a": 42} == get_context(bl) |
| 357 | |
| 358 | def test_proxies_new(self): |
| 359 | """ |
nothing calls this directly
no test coverage detected