()
| 151 | |
| 152 | #[test] |
| 153 | fn format_value_string_long_truncated() { |
| 154 | let long = "a".repeat(101); |
| 155 | let result = format_value(&Value::String(long)); |
| 156 | assert_eq!(result.len(), 100); |
| 157 | assert!(result.ends_with("...")); |
| 158 | } |
| 159 | |
| 160 | #[test] |
| 161 | fn format_value_string_exactly_100_chars() { |
nothing calls this directly
no test coverage detected