()
| 127 | |
| 128 | #[test] |
| 129 | fn test_remove_nonexistent() { |
| 130 | let dir = tempfile::tempdir().unwrap(); |
| 131 | let storage = TokenStorage::new(dir.path().to_path_buf()); |
| 132 | // Should not error |
| 133 | storage.remove("nonexistent").unwrap(); |
| 134 | } |
| 135 | |
| 136 | #[test] |
| 137 | fn test_creates_directory() { |