()
| 4302 | |
| 4303 | #[test] |
| 4304 | fn conflicting_metadata_dropped() { |
| 4305 | let m1 = HashMap::from([("key".into(), "a".into())]); |
| 4306 | let m2 = HashMap::from([("key".into(), "b".into())]); |
| 4307 | let result = intersect_metadata_for_union([&m1, &m2]); |
| 4308 | assert!(result.is_empty()); |
| 4309 | } |
| 4310 | |
| 4311 | #[test] |
| 4312 | fn empty_metadata_branch_skipped() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…