1 2 3 4 5 6 7 8 9 10 11 12 13
//! Test as many auto-derived field types as possible. use helpers::assert_snapshot; use inputs::tuple::Tuple; use mapstic::ToMapping; mod helpers; mod inputs; #[test] fn auto() { assert_snapshot!(Tuple::to_mapping()); }