X Tutup
# encoding: utf-8 """ Step implementations for block content containers """ from behave import given, then, when from docx import Document from docx.table import Table from helpers import test_docx # given =================================================== @given('a document containing a table') def given_a_document_containing_a_table(context): context.document = Document(test_docx('blk-containing-table')) @given('a paragraph') def given_a_paragraph(context): context.document = Document() context.paragraph = context.document.add_paragraph() # when ==================================================== @when('I add a paragraph') def when_add_paragraph(context): document = context.document context.p = document.add_paragraph() @when('I add a table') def when_add_table(context): rows, cols = 2, 2 context.document.add_table(rows, cols) # then ===================================================== @then('I can access the table') def then_can_access_table(context): table = context.document.tables[-1] assert isinstance(table, Table) @then('the new table appears in the document') def then_new_table_appears_in_document(context): table = context.document.tables[-1] assert isinstance(table, Table)
X Tutup