Create a review intent (kind mirrored into the manifest summary), returning its human key.
(repo: &Repository, title: &str)
| 466 | /// Create a review intent (kind mirrored into the manifest summary), returning |
| 467 | /// its human key. |
| 468 | fn create_review_intent(repo: &Repository, title: &str) -> String { |
| 469 | repo.vault_intent_create(IntentCreateOptions { |
| 470 | title: title.to_string(), |
| 471 | priority: Some("medium".to_string()), |
| 472 | assignee: None, |
| 473 | labels: Vec::new(), |
| 474 | session_id: None, |
| 475 | turn_id: None, |
| 476 | kind: Some("review".to_string()), |
| 477 | }) |
| 478 | .unwrap() |
| 479 | .id |
| 480 | } |
| 481 | |
| 482 | #[test] |
| 483 | fn unattested_row_is_na_na() { |