(self, connection)
| 1532 | ) |
| 1533 | |
| 1534 | def test_twelve(self, connection): |
| 1535 | t = self.tables.t |
| 1536 | |
| 1537 | actual_ts = connection.scalar( |
| 1538 | func.current_timestamp() |
| 1539 | ) - datetime.datetime(2012, 5, 10, 12, 15, 25, tzinfo=self.TZ()) |
| 1540 | |
| 1541 | self._test( |
| 1542 | connection, |
| 1543 | func.current_timestamp() - t.c.dttz, |
| 1544 | {"day": actual_ts.days}, |
| 1545 | ) |
| 1546 | |
| 1547 | def test_thirteen(self, connection): |
| 1548 | t = self.tables.t |
nothing calls this directly
no test coverage detected