(self)
| 236 | ) |
| 237 | |
| 238 | def test_in(self): |
| 239 | left = column("left") |
| 240 | assert left.comparator.operate(operators.in_op, [1, 2, 3]).compare( |
| 241 | BinaryExpression( |
| 242 | left, |
| 243 | BindParameter( |
| 244 | "left", value=[1, 2, 3], unique=True, expanding=True |
| 245 | ), |
| 246 | operators.in_op, |
| 247 | type_=sqltypes.BOOLEANTYPE, |
| 248 | ) |
| 249 | ) |
| 250 | self._loop_test(operators.in_op, [1, 2, 3]) |
| 251 | |
| 252 | def test_not_in(self): |
| 253 | left = column("left") |
nothing calls this directly
no test coverage detected