()
| 1010 | |
| 1011 | #[test] |
| 1012 | fn test_extract_session_id_with_value() { |
| 1013 | let id = ClineHook::extract_session_id(Some("task-123".to_string())); |
| 1014 | assert_eq!(id, "task-123"); |
| 1015 | } |
| 1016 | |
| 1017 | #[test] |
| 1018 | fn test_extract_session_id_empty_generates_fallback() { |
nothing calls this directly
no test coverage detected