Attribute Macro https

Source
#[https]
Expand description

Run test case when the https service exist.

#[cfg(test)]
mod tests {

    // https server exists
    #[test_with::https(www.rust-lang.org)]
    #[test]
    fn test_works() {
        assert!(true);
    }

    // There is no not.exist.com
    #[test_with::https(not.exist.com)]
    #[test]
    fn test_ignored() {
        panic!("should be ignored")
    }
}