Convenience fixture helper
(schema: &DbDescSchema)
| 159 | |
| 160 | /// Convenience fixture helper |
| 161 | fn schema_fixture(schema: &DbDescSchema) -> (&'static str, &'static str) { |
| 162 | match schema { |
| 163 | DbDescSchema::V1(_) => ("v1", VALID_DESC_V1), |
| 164 | DbDescSchema::V2(_) => ("v2", VALID_DESC_V2), |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | mod validate { |
| 169 |
no outgoing calls
no test coverage detected