()
| 1002 | |
| 1003 | #[test] |
| 1004 | fn test_remote_config_load_nonexistent() { |
| 1005 | let dir = tempdir().unwrap(); |
| 1006 | let path = dir.path().join("config.toml"); |
| 1007 | |
| 1008 | let config = RemoteConfig::load(&path).unwrap(); |
| 1009 | assert!(config.is_empty()); |
| 1010 | } |
| 1011 | |
| 1012 | #[test] |
| 1013 | fn test_remote_config_save_and_load() { |