(self)
| 743 | |
| 744 | @testing.requires.independent_connections |
| 745 | def test_commit_inactive(self): |
| 746 | with testing.db.connect() as conn: |
| 747 | conn.begin() |
| 748 | conn.invalidate() |
| 749 | |
| 750 | assert_raises_message( |
| 751 | exc.InvalidRequestError, "Can't reconnect until", conn.commit |
| 752 | ) |
| 753 | |
| 754 | @testing.requires.independent_connections |
| 755 | def test_rollback_inactive(self): |
nothing calls this directly
no test coverage detected