(value, criteria_pattern)
| 205 | |
| 206 | |
| 207 | def incontains(value, criteria_pattern): |
| 208 | if criteria_pattern is None: |
| 209 | return False |
| 210 | |
| 211 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 212 | return criteria_pattern.lower() not in value.lower() |
| 213 | |
| 214 | |
| 215 | def startswith(value, criteria_pattern): |
nothing calls this directly
no test coverage detected