(repo: &Repository, message: &str)
| 1109 | use tempfile::TempDir; |
| 1110 | |
| 1111 | fn record_all(repo: &Repository, message: &str) { |
| 1112 | let header = ChangeHeader::new(message); |
| 1113 | let options = RecordOptions::new() |
| 1114 | .with_all(true) |
| 1115 | .save_to_store(true) |
| 1116 | .apply_after_record(true); |
| 1117 | repo.record(header, options).unwrap(); |
| 1118 | } |
| 1119 | |
| 1120 | /// A change recorded only on `feature` that reaches no intent (the KG has |
| 1121 | /// no task/intent join) is a candidate, is flagged ORPHAN_CHANGE, and blocks |