trevors_utilities/tests/poc/primitive_formatting.rs
Trevor Merritt e3b8939082 config.toml: remove excluded files for coverage report
data_to_text.rs: change from . as unrecognized character to ' '
demo.rs: improves POC display of headers
tests/primitive_formatting.rs: initial tests of bool formatting
2026-04-14 07:43:20 -04:00

8 lines
238 B
Rust

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));
}