| 716 | |
| 717 | |
| 718 | class TimeTZTest(_DateFixture, fixtures.TablesTest): |
| 719 | __requires__ = ("time_timezone",) |
| 720 | __backend__ = True |
| 721 | datatype = Time(timezone=True) |
| 722 | data = datetime.time(12, 57, 18, tzinfo=datetime.timezone.utc) |
| 723 | |
| 724 | @testing.requires.time_implicit_bound |
| 725 | def test_select_direct(self, connection): |
| 726 | result = connection.scalar(select(literal(self.data))) |
| 727 | eq_(result, self.data) |
| 728 | |
| 729 | |
| 730 | class TimeMicrosecondsTest(_DateFixture, fixtures.TablesTest): |