Skip to content

Commit

Permalink
skip keyring tests
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Dec 26, 2024
1 parent 908f365 commit cf3df6c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/keyring.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ 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 @@ -49,6 +51,7 @@ mod tests {
}

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

0 comments on commit cf3df6c

Please sign in to comment.