(conn_handler)
| 46 | |
| 47 | |
| 48 | def test_get_storage(conn_handler): |
| 49 | expected_ret_val = {"default": BaseDBAsyncClient("default")} |
| 50 | conn_handler._storage = expected_ret_val |
| 51 | ret_val = conn_handler._get_storage() |
| 52 | assert ret_val == expected_ret_val |
| 53 | assert ret_val is conn_handler._storage |
| 54 | |
| 55 | |
| 56 | def test_set_storage(conn_handler): |
nothing calls this directly
no test coverage detected
searching dependent graphs…