(value, criteria_pattern)
| 189 | |
| 190 | |
| 191 | def icontains(value, criteria_pattern): |
| 192 | if criteria_pattern is None: |
| 193 | return False |
| 194 | |
| 195 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 196 | return criteria_pattern.lower() in value.lower() |
| 197 | |
| 198 | |
| 199 | def ncontains(value, criteria_pattern): |
nothing calls this directly
no test coverage detected