(context: Context)
| 85 | |
| 86 | @when("I open a presentation contained in a stream") |
| 87 | def when_open_presentation_stream(context: Context): |
| 88 | with open(test_pptx("test"), "rb") as f: |
| 89 | stream = io.BytesIO(f.read()) |
| 90 | context.prs = Presentation(stream) |
| 91 | stream.close() |
| 92 | |
| 93 | |
| 94 | @when("I save and reload the presentation") |
nothing calls this directly
no test coverage detected
searching dependent graphs…