(self)
| 65 | return d |
| 66 | |
| 67 | def test_db_error_normal(self): |
| 68 | try: |
| 69 | raise sa_exceptions.DBAPIError.instance( |
| 70 | "", [], OperationalError(), DatabaseError |
| 71 | ) |
| 72 | except sa_exceptions.DBAPIError: |
| 73 | self.assert_(True) |
| 74 | |
| 75 | def test_tostring(self): |
| 76 | try: |
nothing calls this directly
no test coverage detected