(self)
| 250 | self._loop_test(operators.in_op, [1, 2, 3]) |
| 251 | |
| 252 | def test_not_in(self): |
| 253 | left = column("left") |
| 254 | assert left.comparator.operate(operators.not_in_op, [1, 2, 3]).compare( |
| 255 | BinaryExpression( |
| 256 | left, |
| 257 | BindParameter( |
| 258 | "left", value=[1, 2, 3], unique=True, expanding=True |
| 259 | ), |
| 260 | operators.not_in_op, |
| 261 | type_=sqltypes.BOOLEANTYPE, |
| 262 | ) |
| 263 | ) |
| 264 | self._loop_test(operators.not_in_op, [1, 2, 3]) |
| 265 | |
| 266 | def test_in_no_accept_list_of_non_column_element(self): |
| 267 | left = column("left") |
nothing calls this directly
no test coverage detected