| 239 | |
| 240 | print("Example 14") |
| 241 | class ConvertingDeliveryMapper(DescriptorRowMapper): |
| 242 | destination = StringField() |
| 243 | method = StringField() |
| 244 | weight = FloatField() |
| 245 | |
| 246 | obj5 = ConvertingDeliveryMapper.from_row(row1) |
| 247 | assert obj5.destination == "Sydney" |
nothing calls this directly
no test coverage detected