(conn_handler)
| 69 | |
| 70 | |
| 71 | def test_clear_storage(conn_handler): |
| 72 | conn_handler._storage = {"default": BaseDBAsyncClient("default")} |
| 73 | conn_handler._clear_storage() |
| 74 | assert conn_handler._storage == {} |
| 75 | |
| 76 | |
| 77 | @patch("tortoise.connection.importlib.import_module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…