(cls, metadata)
| 1118 | ): |
| 1119 | @classmethod |
| 1120 | def define_tables(cls, metadata): |
| 1121 | MutableDict = cls._type_fixture() |
| 1122 | |
| 1123 | mutable_pickle = MutableDict.as_mutable(PickleType) |
| 1124 | Table( |
| 1125 | class="st">"foo", |
| 1126 | metadata, |
| 1127 | Column( |
| 1128 | class="st">"id", Integer, primary_key=True, test_needs_autoincrement=True |
| 1129 | ), |
| 1130 | Column(class="st">"data", mutable_pickle), |
| 1131 | ) |
| 1132 | |
| 1133 | |
| 1134 | class MutableColumnDefaultTest(_MutableDictTestFixture, fixtures.MappedTest): |
nothing calls this directly
no test coverage detected