()
| 645 | #[tokio::test] |
| 646 | #[ignore = "not on ci"] |
| 647 | async fn test_set_password() { |
| 648 | let key = "test_set_password"; |
| 649 | let store = Database::new().await.unwrap(); |
| 650 | store.set_secret(key, "test").await.unwrap(); |
| 651 | assert_eq!(store.get_secret(key).await.unwrap().unwrap().0, "test"); |
| 652 | store.delete_secret(key).await.unwrap(); |
| 653 | } |
| 654 | |
| 655 | #[tokio::test] |
| 656 | #[ignore = "not on ci"] |
nothing calls this directly
no test coverage detected