(value, criteria_pattern)
| 181 | |
| 182 | |
| 183 | def contains(value, criteria_pattern): |
| 184 | if criteria_pattern is None: |
| 185 | return False |
| 186 | |
| 187 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 188 | return criteria_pattern in value |
| 189 | |
| 190 | |
| 191 | def icontains(value, criteria_pattern): |
nothing calls this directly
no test coverage detected