(repo: &Repository, message: &str)
| 880 | use tempfile::TempDir; |
| 881 | |
| 882 | fn record_all(repo: &Repository, message: &str) { |
| 883 | let header = ChangeHeader::new(message); |
| 884 | let options = RecordOptions::new() |
| 885 | .with_all(true) |
| 886 | .save_to_store(true) |
| 887 | .apply_after_record(true); |
| 888 | repo.record(header, options).unwrap(); |
| 889 | } |
| 890 | |
| 891 | /// A change recorded only on `feature` that reaches no intent (the KG has |
| 892 | /// no task/intent join) is a candidate, is flagged ORPHAN_CHANGE, and blocks |