(source: &str, destination: &PathBuf)
| 263 | use super::*; |
| 264 | |
| 265 | fn create_test_file(source: &str, destination: &PathBuf) { |
| 266 | std::fs::create_dir_all(destination.parent().unwrap()).unwrap(); |
| 267 | std::fs::copy(source, destination).unwrap(); |
| 268 | } |
| 269 | |
| 270 | #[tokio::test] |
| 271 | async fn test_tls_options_default() { |
no outgoing calls