Helper to build IntentCreateOptions with session info for tests.
(title: &str)
| 812 | |
| 813 | /// Helper to build IntentCreateOptions with session info for tests. |
| 814 | fn create_opts(title: &str) -> IntentCreateOptions { |
| 815 | IntentCreateOptions { |
| 816 | title: title.to_string(), |
| 817 | priority: None, |
| 818 | assignee: None, |
| 819 | labels: vec![], |
| 820 | session_id: Some("test-session".to_string()), |
| 821 | turn_id: Some(1), |
| 822 | } |
| 823 | } |
| 824 | |
| 825 | /// Helper to build IntentCreateOptions for a specific session/turn. |
| 826 | fn create_opts_with_session( |
no outgoing calls