fn missing_host_str()

in azure-kusto-ingest/src/resource_manager/resource_uri.rs [174:184]


    fn missing_host_str() {
        let uri = "https:";
        let resource_uri = ResourceUri::try_from(uri);
        println!("{:#?}", resource_uri);

        assert!(resource_uri.is_err());
        assert!(matches!(
            resource_uri.unwrap_err(),
            ResourceUriError::ParseError(_)
        ));
    }