(context: Context)
| 93 | |
| 94 | @when("I save and reload the presentation") |
| 95 | def when_save_and_reload_prs(context: Context): |
| 96 | if os.path.isfile(saved_pptx_path): |
| 97 | os.remove(saved_pptx_path) |
| 98 | context.prs.save(saved_pptx_path) |
| 99 | context.prs = Presentation(saved_pptx_path) |
| 100 | |
| 101 | |
| 102 | @when("I save that stream to a file") |
nothing calls this directly
no test coverage detected
searching dependent graphs…