| 2207 | @classmethod |
| 2208 | def setup_classes(cls): |
| 2209 | class A(cls.DeclarativeBasic): |
| 2210 | __tablename__ = "a" |
| 2211 | id = Column(Integer, primary_key=True) |
| 2212 | unloaded = deferred(Column(String(50))) |
| 2213 | bs = relationship("B", lazy="joined") |
| 2214 | |
| 2215 | class B(cls.DeclarativeBasic): |
| 2216 | __tablename__ = "b" |
nothing calls this directly
no test coverage detected