()
| 2031 | |
| 2032 | #[tokio::test(flavor = "multi_thread")] |
| 2033 | async fn test_session_save_no_store() { |
| 2034 | let agent = Agent::from_config(test_config()).await.unwrap(); |
| 2035 | let session = agent.session("/tmp/test-ws-save", None).unwrap(); |
| 2036 | // save() is a no-op when no store is configured |
| 2037 | session.save().await.unwrap(); |
| 2038 | } |
| 2039 | |
| 2040 | #[tokio::test(flavor = "multi_thread")] |
| 2041 | async fn test_session_save_and_load() { |
nothing calls this directly
no test coverage detected