jdrouet/mrml

View on GitHub
packages/mrml-core/src/mj_social_element/print.rs

Summary

Maintainability
Test Coverage
#[cfg(test)]
mod tests {
    use crate::prelude::print::Printable;

    #[test]
    fn empty() {
        let mut item = crate::mj_social_element::MjSocialElement::default();
        item.attributes
            .insert("src".to_string(), "http://localhost".into());
        assert_eq!(
            "<mj-social-element src=\"http://localhost\" />",
            item.print_dense().unwrap()
        );
    }
}