fn test_parse_examples()

in focus/tracing/src/git_trace2.rs [665:675]


    fn test_parse_examples() -> Result<()> {
        for (k, v) in data::DATA.iter() {
            let xyz: serde_json::Result<Event> = serde_json::from_str(v);
            if let Err(e) = xyz {
                println!("failure: {}, {:?}", *k, e);
                bail!(e)
            }
        }

        Ok(())
    }