()
| 206 | |
| 207 | #[test] |
| 208 | fn non_change_urn_is_ignored() { |
| 209 | let dir = tempfile::tempdir().unwrap(); |
| 210 | atomic_repository::Repository::init(dir.path()).unwrap(); |
| 211 | // A non-change evidence URN is out of scope for resolution. |
| 212 | let v = check_evidence_resolution(&ev("urn:atomic:memory:whatever"), Some(dir.path())); |
| 213 | assert!(v.is_empty()); |
| 214 | } |
| 215 | } |
nothing calls this directly
no test coverage detected