()
| 224 | |
| 225 | #[test] |
| 226 | fn test_case_insensitive() { |
| 227 | let result = match_substring_in("/HELP", COMMAND_SPECS); |
| 228 | assert_eq!(result.len(), 1); |
| 229 | assert_eq!(result[0].name, "/help"); |
| 230 | } |
| 231 | } |
nothing calls this directly
no test coverage detected