(conn_handler)
| 226 | |
| 227 | |
| 228 | def test_set(conn_handler): |
| 229 | conn_handler._storage = {"default": "existing_conn"} |
| 230 | token = conn_handler.set("other", "some_conn") |
| 231 | assert conn_handler._storage == {"default": "existing_conn", "other": "some_conn"} |
| 232 | assert token is not None |
| 233 | |
| 234 | |
| 235 | def test_discard(conn_handler): |
nothing calls this directly
no test coverage detected
searching dependent graphs…