(self, py_op, sql_op, lhs, rhs, res)
| 1617 | id_="aar", |
| 1618 | ) |
| 1619 | def test_arithmetic(self, py_op, sql_op, lhs, rhs, res): |
| 1620 | User = self.classes.User |
| 1621 | |
| 1622 | lhs = testing.resolve_lambda(lhs, User=User) |
| 1623 | rhs = testing.resolve_lambda(rhs, User=User) |
| 1624 | |
| 1625 | fixture_session().query(User) |
| 1626 | self._test(py_op(lhs, rhs), res % sql_op) |
| 1627 | |
| 1628 | @testing.combinations( |
| 1629 | (operators.lt, "<", ">"), |
nothing calls this directly
no test coverage detected