(self, connection)
| 1595 | self._test(connection, t.c.dt + t.c.tm) |
| 1596 | |
| 1597 | def test_eleven(self, connection): |
| 1598 | self._test( |
| 1599 | connection, |
| 1600 | func.current_timestamp() - func.current_timestamp(), |
| 1601 | {"year": 0, "month": 0, "day": 0, "hour": 0}, |
| 1602 | ) |
| 1603 | |
| 1604 | def test_twelve(self, connection): |
| 1605 | t = self.tables.t |
nothing calls this directly
no test coverage detected