It would be great to be able to do this: ``` python @around def build_db(self) db = db.connect() yield db db.close() def test_foo(self, db): assert db.query('SELECT 1') ```