(cls)
| 111 | |
| 112 | @classmethod |
| 113 | def tearDownClass(cls): |
| 114 | # since tearDown discconnects, dropping the database in tearDownClass |
| 115 | # fails without establishing a new connection. |
| 116 | cls._establish_connection_and_re_create_db() |
| 117 | super().tearDownClass() |
| 118 | |
| 119 | def test_check_connect(self): |
| 120 | """ |
nothing calls this directly
no test coverage detected