(self)
| 846 | return iter([1, 2, 3]) |
| 847 | |
| 848 | def __len__(self): |
| 849 | return 3 |
| 850 | |
| 851 | result = await self.con.fetchval("SELECT $1::int[]", Iterable()) |
| 852 | self.assertEqual(result, [1, 2, 3]) |
nothing calls this directly
no outgoing calls
no test coverage detected