(idx)
| 116 | |
| 117 | def i_image_parts(self, request, idxs): |
| 118 | def part(idx): |
| 119 | partname = PackURI("/ppt/media/image%d.png" % idx) |
| 120 | return instance_mock(request, Part, partname=partname) |
| 121 | |
| 122 | return iter([part(idx) for idx in idxs]) |
| 123 |
nothing calls this directly
no test coverage detected