(self, ordered_dict_mro)
| 2245 | self._test_scalar_dataclass_mapped(collection_class) |
| 2246 | |
| 2247 | def test_mixin2(self, ordered_dict_mro): |
| 2248 | class Ordered2(ordered_dict_mro): |
| 2249 | def __init__(self, keyfunc, *args): |
| 2250 | collections.KeyFuncDict.__init__(self, keyfunc, *args) |
| 2251 | util.OrderedDict.__init__(self) |
| 2252 | |
| 2253 | def collection_class(*args): |
| 2254 | return Ordered2(lambda v: (v.a, v.b), *args) |
| 2255 | |
| 2256 | self._test_composite_mapped(collection_class) |
| 2257 | |
| 2258 | |
| 2259 | class ColumnMappedWSerialize(fixtures.MappedTest): |
nothing calls this directly
no test coverage detected