(self)
| 62 | registry = mapper_registry |
| 63 | |
| 64 | def teardown_test(self): |
| 65 | close_all_sessions() |
| 66 | clear_mappers() |
| 67 | with testing.db.begin() as conn: |
| 68 | Base.metadata.drop_all(conn) |
| 69 | |
| 70 | |
| 71 | class DeclarativeMixinTest(DeclarativeTestBase): |
nothing calls this directly
no test coverage detected