()
| 686 | delta = datetime.timedelta(days=1) |
| 687 | |
| 688 | async def record_generator(): |
| 689 | for i in range(100): |
| 690 | yield ('a-{}'.format(i), i, date + delta) |
| 691 | |
| 692 | yield ('a-100', None, None) |
| 693 | |
| 694 | res = await self.con.copy_records_to_table( |
| 695 | 'copytab_async', records=record_generator(), |
nothing calls this directly
no outgoing calls
no test coverage detected