| 1249 | Base = declarative_base(metadata=metadata) |
| 1250 | |
| 1251 | class AbstractFoo(Base): |
| 1252 | __abstract__ = True |
| 1253 | |
| 1254 | id = Column( |
| 1255 | Integer, primary_key=True, test_needs_autoincrement=True |
| 1256 | ) |
| 1257 | data = Column(MutableDict.as_mutable(JSONEncodedDict)) |
| 1258 | non_mutable_data = Column(JSONEncodedDict) |
| 1259 | unrelated_data = Column(String(50)) |
| 1260 | |
| 1261 | class Foo(AbstractFoo): |
| 1262 | __tablename__ = class="st">"foo" |
nothing calls this directly
no test coverage detected