(self, operator, compare_to)
| 113 | |
| 114 | @testing.combinations((operators.desc_op, desc), (operators.asc_op, asc)) |
| 115 | def test_scalar(self, operator, compare_to): |
| 116 | left = column("left") |
| 117 | assert left.comparator.operate(operator).compare(compare_to(left)) |
| 118 | self._loop_test(operator) |
| 119 | |
| 120 | right_column = column("right") |
| 121 |
nothing calls this directly
no test coverage detected