()
| 125 | |
| 126 | #[tokio::test] |
| 127 | async fn test_file_store_load_nonexistent() { |
| 128 | let dir = tempdir().unwrap(); |
| 129 | let store = FileSessionStore::new(dir.path()).await.unwrap(); |
| 130 | |
| 131 | let loaded = store.load("nonexistent").await.unwrap(); |
| 132 | assert!(loaded.is_none()); |
| 133 | } |
| 134 | |
| 135 | #[tokio::test] |
| 136 | async fn test_file_store_delete() { |