(self, connection)
| 1448 | ) |
| 1449 | |
| 1450 | def test_three(self, connection): |
| 1451 | self.tables.t |
| 1452 | |
| 1453 | actual_ts = self.bind.connect().execute( |
| 1454 | func.current_timestamp() |
| 1455 | ).scalar() - datetime.timedelta(days=5) |
| 1456 | self._test( |
| 1457 | connection, |
| 1458 | func.current_timestamp() - datetime.timedelta(days=5), |
| 1459 | { |
| 1460 | "hour": actual_ts.hour, |
| 1461 | "year": actual_ts.year, |
| 1462 | "month": actual_ts.month, |
| 1463 | }, |
| 1464 | ) |
| 1465 | |
| 1466 | def test_four(self, connection): |
| 1467 | t = self.tables.t |
nothing calls this directly
no test coverage detected