()
| 482 | |
| 483 | #[tokio::test] |
| 484 | async fn test_memory_store_delete() { |
| 485 | let store = MemorySessionStore::new(); |
| 486 | let session = create_test_session_data(); |
| 487 | |
| 488 | store.save(&session).await.unwrap(); |
| 489 | assert!(store.exists(&session.id).await.unwrap()); |
| 490 | |
| 491 | store.delete(&session.id).await.unwrap(); |
| 492 | assert!(!store.exists(&session.id).await.unwrap()); |
| 493 | } |
| 494 | |
| 495 | #[tokio::test] |
| 496 | async fn test_memory_store_list() { |
nothing calls this directly
no test coverage detected