| 2168 | @testing.fixture |
| 2169 | def mapping_fixture(self, decl_base): |
| 2170 | class A(decl_base): |
| 2171 | __tablename__ = "a" |
| 2172 | id = Column(Integer, primary_key=True) |
| 2173 | col1 = Column(String(100)) |
| 2174 | col2 = Column(String(100)) |
| 2175 | col3 = Column(String(100)) |
| 2176 | col4 = Column(String(100)) |
| 2177 | |
| 2178 | decl_base.metadata.create_all(testing.db) |
| 2179 |