| 704 | |
| 705 | |
| 706 | class TimeTest(_DateFixture, fixtures.TablesTest): |
| 707 | __requires__ = ("time",) |
| 708 | __backend__ = True |
| 709 | datatype = Time |
| 710 | data = datetime.time(12, 57, 18) |
| 711 | |
| 712 | @testing.requires.time_implicit_bound |
| 713 | def test_select_direct(self, connection): |
| 714 | result = connection.scalar(select(literal(self.data))) |
| 715 | eq_(result, self.data) |
| 716 | |
| 717 | |
| 718 | class TimeTZTest(_DateFixture, fixtures.TablesTest): |