Skip to content

Commit

Permalink
enable keyring tests
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Dec 26, 2024
1 parent 1939540 commit 53866cf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/keyring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ mod tests {
use super::*;

#[test]
#[ignore]
fn test_save() {
let password = SecretString::from_str("password").unwrap();
assert!(save(&password, "test1").is_ok());
remove("test1").unwrap();
}

#[test]
#[ignore]
fn test_get() {
let password = SecretString::from_str("password").unwrap();
save(&password, "test2").unwrap();
Expand All @@ -51,7 +49,6 @@ mod tests {
}

#[test]
#[ignore]
fn test_remove() {
let password = SecretString::from_str("password").unwrap();
save(&password, "test3").unwrap();
Expand Down

0 comments on commit 53866cf

Please sign in to comment.