()
| 576 | |
| 577 | #[test] |
| 578 | fn test_parse_proxy_url_http() { |
| 579 | let config = parse_proxy_url("http://127.0.0.1:8080").unwrap(); |
| 580 | assert_eq!(config.host, "127.0.0.1"); |
| 581 | assert_eq!(config.port, 8080); |
| 582 | } |
| 583 | |
| 584 | #[test] |
| 585 | fn test_parse_proxy_url_socks5() { |
nothing calls this directly
no test coverage detected