Adds a contains word check :param str word: word to check :rtype: Query
(self, word)
| 1097 | |
| 1098 | @fluent |
| 1099 | def contains(self, word): |
| 1100 | """ Adds a contains word check |
| 1101 | |
| 1102 | :param str word: word to check |
| 1103 | :rtype: Query |
| 1104 | """ |
| 1105 | return self.function('contains', word) |
| 1106 | |
| 1107 | @fluent |
| 1108 | def startswith(self, word): |
no test coverage detected