()
| 120 | /// `local_version_range()` must be consistent: min <= max. |
| 121 | #[test] |
| 122 | fn local_range_is_valid() { |
| 123 | let r = local_version_range(); |
| 124 | assert!( |
| 125 | r.min <= r.max, |
| 126 | "local_version_range min ({}) must be <= max ({})", |
| 127 | r.min, |
| 128 | r.max |
| 129 | ); |
| 130 | } |
| 131 | |
| 132 | /// Two identical ranges negotiate to the shared max. |
| 133 | #[test] |
nothing calls this directly
no test coverage detected