(cls, metadata)
| 1134 | class MutableColumnDefaultTest(_MutableDictTestFixture, fixtures.MappedTest): |
| 1135 | @classmethod |
| 1136 | def define_tables(cls, metadata): |
| 1137 | MutableDict = cls._type_fixture() |
| 1138 | |
| 1139 | mutable_pickle = MutableDict.as_mutable(PickleType) |
| 1140 | Table( |
| 1141 | class="st">"foo", |
| 1142 | metadata, |
| 1143 | Column( |
| 1144 | class="st">"id", Integer, primary_key=True, test_needs_autoincrement=True |
| 1145 | ), |
| 1146 | Column(class="st">"data", mutable_pickle, default={}), |
| 1147 | ) |
| 1148 | |
| 1149 | def setup_mappers(cls): |
| 1150 | foo = cls.tables.foo |
nothing calls this directly
no test coverage detected