(*arg, **kw)
| 648 | sess = fixture_session() |
| 649 | |
| 650 | def fail(*arg, **kw): |
| 651 | raise BaseException("some base exception") |
| 652 | |
| 653 | with mock.patch.object( |
| 654 | testing.db.dialect, "do_rollback", side_effect=fail |
no outgoing calls
no test coverage detected