(context)
| 77 | |
| 78 | @when("I call TextFrame.fit_text()") |
| 79 | def when_I_call_TextFrame_fit_text(context): |
| 80 | from helpers import test_file |
| 81 | |
| 82 | font_file = test_file("calibriz.ttf") |
| 83 | context.text_frame.fit_text(bold=True, italic=True, font_file=font_file) |
| 84 | # context.text_frame.fit_text(font_family='Arial', bold=True, italic=True) |
| 85 | |
| 86 | |
| 87 | # then ==================================================== |