fn test_format_header()

in azure-kusto-data/src/client_details.rs [143:149]


    fn test_format_header() {
        assert_eq!(format_header(vec![("a".into(), "b".into())]), "a:{b}");
        assert_eq!(
            format_header(vec![("a".into(), "b".into()), ("c".into(), "d".into())]),
            "a:{b}|c:{d}"
        );
    }