(fn, *args)
| 999 | |
| 1000 | |
| 1001 | def _assert_invalidated(fn, *args): |
| 1002 | try: |
| 1003 | fn(*args) |
| 1004 | assert False |
| 1005 | except tsa.exc.DBAPIError as e: |
| 1006 | if not e.connection_invalidated: |
| 1007 | raise |
| 1008 | |
| 1009 | |
| 1010 | class RealPrePingEventHandlerTest(fixtures.TestBase): |
no outgoing calls
no test coverage detected