()
| 250 | |
| 251 | #[tokio::test] |
| 252 | async fn sqlite_delete_behavior() { |
| 253 | let store = test_store().await; |
| 254 | |
| 255 | store |
| 256 | .put("sandbox", "abc", "my-sandbox", b"payload", None) |
| 257 | .await |
| 258 | .unwrap(); |
| 259 | |
| 260 | let deleted = store.delete("sandbox", "abc").await.unwrap(); |
| 261 | assert!(deleted); |
| 262 | |
| 263 | let deleted_again = store.delete("sandbox", "missing").await.unwrap(); |
| 264 | assert!(!deleted_again); |
| 265 | } |
| 266 | |
| 267 | #[tokio::test] |
| 268 | async fn sqlite_protobuf_round_trip() { |
nothing calls this directly
no test coverage detected