use trevors_utilities::primitive_formatting; #[test] fn test_primitive_bool() { assert_eq!("1".to_string(), primitive_formatting::bool_to_string(true)); assert_eq!("0".to_string(), primitive_formatting::bool_to_string(false)); }