rustc/vendor/curl/tests/protocols.rs
2024-05-03 09:23:16 +02: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());
}