()
| 159 | |
| 160 | #[tokio::test] |
| 161 | async fn test_default_is_idle() { |
| 162 | let mgr = SessionStatusManager::new(); |
| 163 | let status = mgr.get("ses_123").await; |
| 164 | assert!(matches!(status, SessionStatusInfo::Idle)); |
| 165 | } |
| 166 | |
| 167 | #[tokio::test] |
| 168 | async fn test_set_busy() { |