conspire 0.7.2

The Rust interface to conspire.
Documentation
use crate::{
    // geometry::mesh::tessellation::{
    // Tessellation,
    // write::test::{CONNECTIVITY, COORDINATES, NORMALS},
    // },
    math::assert::{
        AssertionError,
        // assert_eq
    },
};
// use std::path::Path;

#[test]
fn consistency() -> Result<(), AssertionError> {
    // let tessellation = Tessellation::<1, usize>::try_from(Path::new("target/foo.stl"))?;
    // assert_eq!(tessellation.mesh.connectivity, CONNECTIVITY);
    // Assert::eq(&tessellation.mesh.coordinates, &COORDINATES.into())?;
    // Assert::eq(&tessellation.normals, &NORMALS.into())
    Ok(())
}