| 728 | |
| 729 | |
| 730 | class TimeMicrosecondsTest(_DateFixture, fixtures.TablesTest): |
| 731 | __requires__ = ("time_microseconds",) |
| 732 | __backend__ = True |
| 733 | datatype = Time |
| 734 | data = datetime.time(12, 57, 18, 396) |
| 735 | |
| 736 | @testing.requires.time_implicit_bound |
| 737 | def test_select_direct(self, connection): |
| 738 | result = connection.scalar(select(literal(self.data))) |
| 739 | eq_(result, self.data) |
| 740 | |
| 741 | |
| 742 | class DateTest(_DateFixture, fixtures.TablesTest): |