()
| 1141 | |
| 1142 | #[test] |
| 1143 | fn test_turn_changes_with_timestamp() { |
| 1144 | use chrono::TimeZone; |
| 1145 | let ts = Utc.with_ymd_and_hms(2026, 7, 4, 12, 0, 0).unwrap(); |
| 1146 | let changes = TurnChanges::new().with_timestamp(ts); |
| 1147 | assert_eq!(changes.timestamp, ts); |
| 1148 | } |
| 1149 | |
| 1150 | // merge_paths tests |
| 1151 |
nothing calls this directly
no test coverage detected