tina-core 0.0.2

Tina platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! http mod
pub mod content_disposition;

#[allow(unused)]
#[cfg(test)]
mod test {

    #[test]
    #[ignore]
    fn test_reqwest_https() {
        let url = "https://www.baidu.com";
        let client = reqwest::blocking::Client::new();
        let res = client.get(url).send().expect("send request failed");
        println!("{}", res.text().expect("get response failed"));
    }
}