()
| 192 | |
| 193 | #[test] |
| 194 | fn test_mid_string_match() { |
| 195 | let result = match_substring_in("/usa", COMMAND_SPECS); |
| 196 | assert_eq!(result.len(), 1); |
| 197 | assert_eq!(result[0].name, "/usage"); |
| 198 | } |
| 199 | |
| 200 | #[test] |
| 201 | fn test_multiple_substring_matches() { |
nothing calls this directly
no test coverage detected