()
| 648 | |
| 649 | #[test] |
| 650 | fn test_load_invalid_json() { |
| 651 | let json_str = "{invalid_json}"; |
| 652 | let repo = load_json(json_str); |
| 653 | assert!(repo.is_err()); |
| 654 | } |
| 655 | |
| 656 | #[test] |
| 657 | fn test_salt_hash() { |
nothing calls this directly
no test coverage detected