rustc/vendor/curl-0.4.47/tests/protocols.rs
2025-01-11 15:57:26 +01:00

20 lines
463 B
Rust

#[cfg(all(feature = "static-curl", not(feature = "protocol-ftp")))]
#[test]
fn static_with_ftp_disabled() {
assert!(curl::Version::get()
.protocols()
.filter(|&p| p == "ftp")
.next()
.is_none());
}
#[cfg(all(feature = "static-curl", feature = "protocol-ftp"))]
#[test]
fn static_with_ftp_enabled() {
assert!(curl::Version::get()
.protocols()
.filter(|&p| p == "ftp")
.next()
.is_some());
}