(value, criteria_pattern)
| 173 | |
| 174 | |
| 175 | def iequals(value, criteria_pattern): |
| 176 | if criteria_pattern is None: |
| 177 | return False |
| 178 | |
| 179 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 180 | return value.lower() == criteria_pattern.lower() |
| 181 | |
| 182 | |
| 183 | def contains(value, criteria_pattern): |
nothing calls this directly
no test coverage detected