()
| 4294 | |
| 4295 | #[test] |
| 4296 | fn all_branches_same_metadata() { |
| 4297 | let m1 = HashMap::from([("key".into(), "val".into())]); |
| 4298 | let m2 = HashMap::from([("key".into(), "val".into())]); |
| 4299 | let result = intersect_metadata_for_union([&m1, &m2]); |
| 4300 | assert_eq!(result, HashMap::from([("key".into(), "val".into())])); |
| 4301 | } |
| 4302 | |
| 4303 | #[test] |
| 4304 | fn conflicting_metadata_dropped() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…