Helper to build IntentCreateOptions with session info for tests.
(title: &str)
| 766 | |
| 767 | /// Helper to build IntentCreateOptions with session info for tests. |
| 768 | fn create_opts(title: &str) -> IntentCreateOptions { |
| 769 | IntentCreateOptions { |
| 770 | title: title.to_string(), |
| 771 | priority: None, |
| 772 | assignee: None, |
| 773 | labels: vec![], |
| 774 | session_id: Some("test-session".to_string()), |
| 775 | turn_id: Some(1), |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | /// Helper to build IntentCreateOptions for a specific session/turn. |
| 780 | fn create_opts_with_session( |
no outgoing calls