()
| 23 | |
| 24 | @pytest.fixture(scope="function") |
| 25 | def connection(): |
| 26 | create_db("_test_db") |
| 27 | connection = db_connection("_test_db") |
| 28 | yield connection |
| 29 | |
| 30 | drop_tables(connection) |
| 31 | connection.close() |
| 32 | |
| 33 | |
| 34 | @pytest.fixture |
nothing calls this directly
no test coverage detected