()
| 193 | |
| 194 | #[test] |
| 195 | fn humanize() { |
| 196 | assert_eq!(humanize_count(12).to_string(), "12"); |
| 197 | assert_eq!(humanize_count(1_234).to_string(), "1.23K"); |
| 198 | assert_eq!(humanize_count(12_344_000).to_string(), "12.34M"); |
| 199 | } |
| 200 | } |
nothing calls this directly
no outgoing calls
no test coverage detected