xl-docx 2.9.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (114) hide show
  1. xl_docx-2.9.6/.gitignore +4 -0
  2. xl_docx-2.9.6/.pytest_cache/.gitignore +2 -0
  3. xl_docx-2.9.6/.pytest_cache/CACHEDIR.TAG +4 -0
  4. xl_docx-2.9.6/.pytest_cache/README.md +8 -0
  5. xl_docx-2.9.6/.pytest_cache/v/cache/lastfailed +6 -0
  6. xl_docx-2.9.6/.pytest_cache/v/cache/nodeids +528 -0
  7. xl_docx-2.9.6/.pytest_cache/v/cache/stepwise +1 -0
  8. xl_docx-2.9.6/PKG-INFO +15 -0
  9. xl_docx-2.9.6/README.md +0 -0
  10. xl_docx-2.9.6/assets/h.docx +0 -0
  11. xl_docx-2.9.6/assets/img/word-template.png +0 -0
  12. xl_docx-2.9.6/assets/img/wordx-tool.png +0 -0
  13. xl_docx-2.9.6/assets/v.docx +0 -0
  14. xl_docx-2.9.6/assets//345/276/213/345/270/210/345/207/275.docx +0 -0
  15. xl_docx-2.9.6/assets//347/247/237/346/210/277/345/220/210/345/220/214.docx +0 -0
  16. xl_docx-2.9.6/pip.conf +3 -0
  17. xl_docx-2.9.6/pyproject.toml +28 -0
  18. xl_docx-2.9.6/src/xl_docx/__init__.py +5 -0
  19. xl_docx-2.9.6/src/xl_docx/__main__.py +5 -0
  20. xl_docx-2.9.6/src/xl_docx/compiler/__init__.py +48 -0
  21. xl_docx-2.9.6/src/xl_docx/compiler/processors/__init__.py +6 -0
  22. xl_docx-2.9.6/src/xl_docx/compiler/processors/base.py +83 -0
  23. xl_docx-2.9.6/src/xl_docx/compiler/processors/directive.py +183 -0
  24. xl_docx-2.9.6/src/xl_docx/compiler/processors/pager.py +204 -0
  25. xl_docx-2.9.6/src/xl_docx/compiler/processors/paragraph/__init__.py +359 -0
  26. xl_docx-2.9.6/src/xl_docx/compiler/processors/paragraph/image.py +54 -0
  27. xl_docx-2.9.6/src/xl_docx/compiler/processors/style.py +100 -0
  28. xl_docx-2.9.6/src/xl_docx/compiler/processors/table.py +801 -0
  29. xl_docx-2.9.6/src/xl_docx/components/page-break.xml +11 -0
  30. xl_docx-2.9.6/src/xl_docx/components/pager.xml +0 -0
  31. xl_docx-2.9.6/src/xl_docx/components/xl-block.xml +5 -0
  32. xl_docx-2.9.6/src/xl_docx/components/xl-box-image.xml +12 -0
  33. xl_docx-2.9.6/src/xl_docx/components/xl-check.xml +3 -0
  34. xl_docx-2.9.6/src/xl_docx/components/xl-page.xml +10 -0
  35. xl_docx-2.9.6/src/xl_docx/components/xl-repeat.xml +3 -0
  36. xl_docx-2.9.6/src/xl_docx/components/xl-text.xml +1 -0
  37. xl_docx-2.9.6/src/xl_docx/document.py +63 -0
  38. xl_docx-2.9.6/src/xl_docx/h.docx +0 -0
  39. xl_docx-2.9.6/src/xl_docx/loader/__init__.py +12 -0
  40. xl_docx-2.9.6/src/xl_docx/mcp/__init__.py +139 -0
  41. xl_docx-2.9.6/src/xl_docx/mcp/word_mcp.py +114 -0
  42. xl_docx-2.9.6/src/xl_docx/mcp/xml_syntax_reference.txt +50 -0
  43. xl_docx-2.9.6/src/xl_docx/mixins/__init__.py +4 -0
  44. xl_docx-2.9.6/src/xl_docx/mixins/component.py +215 -0
  45. xl_docx-2.9.6/src/xl_docx/mixins/relation.py +102 -0
  46. xl_docx-2.9.6/src/xl_docx/output/doc_1.docx +0 -0
  47. xl_docx-2.9.6/src/xl_docx/output/doc_2.docx +0 -0
  48. xl_docx-2.9.6/src/xl_docx/scripts/clean_rsid_attributes.py +182 -0
  49. xl_docx-2.9.6/src/xl_docx/scripts/process_body_xml_files.py +105 -0
  50. xl_docx-2.9.6/src/xl_docx/scripts/process_ftr_xml_files.py +105 -0
  51. xl_docx-2.9.6/src/xl_docx/scripts/process_hdr_xml_files.py +105 -0
  52. xl_docx-2.9.6/src/xl_docx/sheet.py +342 -0
  53. xl_docx-2.9.6/src/xl_docx/test.py +28 -0
  54. xl_docx-2.9.6/src/xl_docx/utils/fake_zip.py +144 -0
  55. xl_docx-2.9.6/src/xl_docx/utils/tool/__init__.py +327 -0
  56. xl_docx-2.9.6/src/xl_docx/utils/tool/build.bat +27 -0
  57. xl_docx-2.9.6/src/xl_docx/utils/tool/document.xml +0 -0
  58. xl_docx-2.9.6/src/xl_docx/utils/tool/gui.py +120 -0
  59. xl_docx-2.9.6/src/xl_docx/utils/tool/h.docx +0 -0
  60. xl_docx-2.9.6/src/xl_docx/utils/tool/tool.spec +44 -0
  61. xl_docx-2.9.6/src/xl_docx/utils/tool/utility.py +150 -0
  62. xl_docx-2.9.6/src/xl_docx/utils/tool/v.docx +0 -0
  63. xl_docx-2.9.6/src/xl_docx/utils/tree.py +59 -0
  64. xl_docx-2.9.6/src/xl_docx/v.docx +0 -0
  65. xl_docx-2.9.6/src/xl_docx/word_file.py +84 -0
  66. xl_docx-2.9.6/temp_body.xml +0 -0
  67. xl_docx-2.9.6/tests/.pytest_cache/.gitignore +2 -0
  68. xl_docx-2.9.6/tests/.pytest_cache/CACHEDIR.TAG +4 -0
  69. xl_docx-2.9.6/tests/.pytest_cache/README.md +8 -0
  70. xl_docx-2.9.6/tests/.pytest_cache/v/cache/lastfailed +19 -0
  71. xl_docx-2.9.6/tests/.pytest_cache/v/cache/nodeids +487 -0
  72. xl_docx-2.9.6/tests/.pytest_cache/v/cache/stepwise +1 -0
  73. xl_docx-2.9.6/tests/conftest.py +30 -0
  74. xl_docx-2.9.6/tests/test_base.py +168 -0
  75. xl_docx-2.9.6/tests/test_compiler_usage_example.py +144 -0
  76. xl_docx-2.9.6/tests/test_component/.pytest_cache/.gitignore +2 -0
  77. xl_docx-2.9.6/tests/test_component/.pytest_cache/CACHEDIR.TAG +4 -0
  78. xl_docx-2.9.6/tests/test_component/.pytest_cache/README.md +8 -0
  79. xl_docx-2.9.6/tests/test_component/.pytest_cache/v/cache/lastfailed +4 -0
  80. xl_docx-2.9.6/tests/test_component/.pytest_cache/v/cache/nodeids +22 -0
  81. xl_docx-2.9.6/tests/test_component/.pytest_cache/v/cache/stepwise +1 -0
  82. xl_docx-2.9.6/tests/test_component/test_basic.py +33 -0
  83. xl_docx-2.9.6/tests/test_component/test_slot.py +103 -0
  84. xl_docx-2.9.6/tests/test_directive.py +224 -0
  85. xl_docx-2.9.6/tests/test_haha.py +372 -0
  86. xl_docx-2.9.6/tests/test_image.py +282 -0
  87. xl_docx-2.9.6/tests/test_paragraph/.pytest_cache/.gitignore +2 -0
  88. xl_docx-2.9.6/tests/test_paragraph/.pytest_cache/CACHEDIR.TAG +4 -0
  89. xl_docx-2.9.6/tests/test_paragraph/.pytest_cache/README.md +8 -0
  90. xl_docx-2.9.6/tests/test_paragraph/.pytest_cache/v/cache/nodeids +1 -0
  91. xl_docx-2.9.6/tests/test_paragraph/.pytest_cache/v/cache/stepwise +1 -0
  92. xl_docx-2.9.6/tests/test_paragraph/__init__.py +3 -0
  93. xl_docx-2.9.6/tests/test_paragraph/test_basic.py +76 -0
  94. xl_docx-2.9.6/tests/test_paragraph/test_block.py +37 -0
  95. xl_docx-2.9.6/tests/test_paragraph/test_box_image.py +201 -0
  96. xl_docx-2.9.6/tests/test_paragraph/test_color.py +31 -0
  97. xl_docx-2.9.6/tests/test_paragraph/test_image.py +135 -0
  98. xl_docx-2.9.6/tests/test_paragraph/test_spacing.py +76 -0
  99. xl_docx-2.9.6/tests/test_paragraph/test_span.py +69 -0
  100. xl_docx-2.9.6/tests/test_paragraph/test_style.py +102 -0
  101. xl_docx-2.9.6/tests/test_style.py +232 -0
  102. xl_docx-2.9.6/tests/test_table/.pytest_cache/.gitignore +2 -0
  103. xl_docx-2.9.6/tests/test_table/.pytest_cache/CACHEDIR.TAG +4 -0
  104. xl_docx-2.9.6/tests/test_table/.pytest_cache/README.md +8 -0
  105. xl_docx-2.9.6/tests/test_table/.pytest_cache/v/cache/lastfailed +1 -0
  106. xl_docx-2.9.6/tests/test_table/.pytest_cache/v/cache/nodeids +80 -0
  107. xl_docx-2.9.6/tests/test_table/.pytest_cache/v/cache/stepwise +1 -0
  108. xl_docx-2.9.6/tests/test_table/__init__.py +3 -0
  109. xl_docx-2.9.6/tests/test_table/test_basic.py +170 -0
  110. xl_docx-2.9.6/tests/test_table/test_cell.py +227 -0
  111. xl_docx-2.9.6/tests/test_table/test_decompile.py +147 -0
  112. xl_docx-2.9.6/tests/test_table/test_padding.py +125 -0
  113. xl_docx-2.9.6/tests/test_table/test_row.py +259 -0
  114. xl_docx-2.9.6/tests/test_table/test_tr.py +53 -0
@@ -0,0 +1,4 @@
1
+ dist
2
+ build
3
+ __pycache__
4
+ *.pyc
@@ -0,0 +1,2 @@
1
+ # Created by pytest automatically.
2
+ *
@@ -0,0 +1,4 @@
1
+ Signature: 8a477f597d28d172789f06886806bc55
2
+ # This file is a cache directory tag created by pytest.
3
+ # For information about cache directory tags, see:
4
+ # https://bford.info/cachedir/spec.html
@@ -0,0 +1,8 @@
1
+ # pytest cache directory #
2
+
3
+ This directory contains data from the pytest's cache plugin,
4
+ which provides the `--lf` and `--ff` options, as well as the `cache` fixture.
5
+
6
+ **Do not** commit this to version control.
7
+
8
+ See [the docs](https://docs.pytest.org/en/stable/how-to/cache.html) for more information.
@@ -0,0 +1,6 @@
1
+ {
2
+ "src/xl_docx/compiler/tests/test_image.py": true,
3
+ "src/xl_docx/compiler/tests/test_table.py": true,
4
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_span_grid_calculation": true,
5
+ "tests/test_compiler_integration.py::test_compiler_render_with_external_components": true
6
+ }
@@ -0,0 +1,528 @@
1
+ [
2
+ "src/xl_docx/compiler/processors/tests/test_paragraph.py::TestParagraphProcessor::test_compile_multiple_xl_images_in_spans",
3
+ "src/xl_docx/compiler/processors/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_nested_spans",
4
+ "src/xl_docx/compiler/processors/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span",
5
+ "src/xl_docx/compiler/processors/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span_with_style",
6
+ "src/xl_docx/compiler/processors/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span_with_template_variables",
7
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_complex_table",
8
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_simple_table",
9
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell",
10
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_complex_attributes",
11
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_align",
12
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_borders",
13
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_content_tags",
14
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_continue_merge",
15
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_merge",
16
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_span",
17
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_cell_with_width",
18
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_empty_cells",
19
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_header",
20
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_header_with_attributes",
21
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_multiple_rows",
22
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_row",
23
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_row_with_cant_split",
24
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_row_with_header",
25
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_row_with_height",
26
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_row_with_multiple_attributes",
27
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_structure",
28
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_alignment",
29
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_border_none",
30
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_custom_border",
31
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_default_border",
32
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_default_padding",
33
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_grid_column",
34
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_margin",
35
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_mixed_style_and_padding",
36
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_padding",
37
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_partial_padding",
38
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_compile_table_with_width",
39
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_complex_table",
40
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_simple_table",
41
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_align",
42
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_borders",
43
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_continue_merge",
44
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_merge",
45
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_span",
46
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_cell_with_width",
47
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_empty_cells",
48
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_multiple_rows",
49
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_alignment",
50
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_borders",
51
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_cant_split",
52
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_default_padding",
53
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_grid_column",
54
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_header",
55
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_height",
56
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_margin",
57
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_padding",
58
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_partial_padding",
59
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_width",
60
+ "src/xl_docx/compiler/processors/tests/test_table.py::TestTableProcessor::test_decompile_table_with_zero_padding",
61
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_attr_str_empty_dict",
62
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_attr_str_none",
63
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_attr_str_valid",
64
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_style_str_empty_dict",
65
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_style_str_none",
66
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_build_style_str_valid",
67
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_compile_not_implemented",
68
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_extract_attrs_empty_string",
69
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_extract_attrs_missing_attr",
70
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_extract_attrs_success",
71
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_extract_no_match",
72
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_extract_success",
73
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_parse_style_str_empty",
74
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_parse_style_str_none",
75
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_parse_style_str_valid",
76
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_parse_style_str_with_spaces",
77
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_process_tag_multiple_matches",
78
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_process_tag_no_matches",
79
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_process_tag_simple",
80
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_retrieve_empty_dict",
81
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_retrieve_missing_key",
82
+ "src/xl_docx/compiler/tests/test_base.py::TestBaseProcessor::test_retrieve_success",
83
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_multiple_xl_images",
84
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_basic",
85
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_in_p_tag",
86
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_missing_attributes",
87
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_mixed_with_xl_image",
88
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_self_closing",
89
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_with_template_variables",
90
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_basic",
91
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_in_span",
92
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_missing_attributes",
93
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_no_match",
94
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_with_content",
95
+ "src/xl_docx/compiler/tests/test_image.py::TestImageProcessor::test_compile_xl_image_with_template_variables",
96
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_margin",
97
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_mixed_xl_image_and_xl_box_image_in_spans",
98
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_multiple_xl_images_in_spans",
99
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_complex_style",
100
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_empty_content",
101
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_no_style",
102
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_bold",
103
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_fonts",
104
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_nested_spans",
105
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_spacing",
106
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_span",
107
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_special_characters",
108
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_style",
109
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_paragraph_with_whitespace",
110
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_r_with_spacing",
111
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_simple_paragraph",
112
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_with_color",
113
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_box_image_in_p",
114
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_box_image_in_span",
115
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_box_image_in_span_with_style",
116
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_box_image_in_span_with_template_variables",
117
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_box_image_self_closing_in_span",
118
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_nested_spans",
119
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span",
120
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span_with_style",
121
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_compile_xl_image_in_span_with_template_variables",
122
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_margin",
123
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_complex",
124
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_no_runs",
125
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_alignment",
126
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_bold",
127
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_empty_runs",
128
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_font_size",
129
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_fonts",
130
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_multiple_runs",
131
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_nested_spans",
132
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_spacing",
133
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_span",
134
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_special_characters",
135
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_underline",
136
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_paragraph_with_whitespace",
137
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_r_with_spacing",
138
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_simple_paragraph",
139
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_with_color",
140
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_decompile_with_empty_space",
141
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_empty_lines",
142
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_no_text",
143
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_simple",
144
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_single_line",
145
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_whitespace_only",
146
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_with_style",
147
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_with_variable",
148
+ "src/xl_docx/compiler/tests/test_paragraph.py::TestParagraphProcessor::test_process_block_with_variable_and_style",
149
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_empty_content",
150
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_no_style",
151
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_with_special_characters",
152
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_with_whitespace",
153
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_compile_simple_paragraph",
154
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_decompile_paragraph_with_special_characters",
155
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_decompile_paragraph_with_whitespace",
156
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_decompile_simple_paragraph",
157
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_basic.py::TestParagraphBasicProcessor::test_decompile_with_empty_space",
158
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_block.py::TestParagraphBlockProcessor::test_process_block_with_variable",
159
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_block.py::TestParagraphBlockProcessor::test_process_block_with_variable_and_style",
160
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_mixed_xl_image_and_xl_box_image_in_spans",
161
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_p",
162
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span",
163
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span_with_style",
164
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span_with_template_variables",
165
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_self_closing_in_span",
166
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_color.py::TestParagraphColorProcessor::test_compile_with_color",
167
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_color.py::TestParagraphColorProcessor::test_decompile_with_color",
168
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_image.py::TestParagraphImageProcessor::test_compile_multiple_xl_images_in_spans",
169
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_nested_spans",
170
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span",
171
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span_with_style",
172
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span_with_template_variables",
173
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_spacing.py::TestParagraphSpacingProcessor::test_compile_margin",
174
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_spacing.py::TestParagraphSpacingProcessor::test_compile_paragraph_with_spacing",
175
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_spacing.py::TestParagraphSpacingProcessor::test_compile_r_with_spacing",
176
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_spacing.py::TestParagraphSpacingProcessor::test_decompile_margin",
177
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_spacing.py::TestParagraphSpacingProcessor::test_decompile_r_with_spacing",
178
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_compile_paragraph_with_nested_spans",
179
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_compile_paragraph_with_span",
180
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_no_runs",
181
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_empty_runs",
182
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_multiple_runs",
183
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_nested_spans",
184
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_span",
185
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_compile_paragraph_complex_style",
186
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_bold",
187
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_fonts",
188
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_style",
189
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_complex",
190
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_alignment",
191
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_bold",
192
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_font_size",
193
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_fonts",
194
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_spacing",
195
+ "src/xl_docx/compiler/tests/test_paragraph/test_paragraph_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_underline",
196
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_table_with_default_padding",
197
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_table_with_mixed_style_and_padding",
198
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_table_with_padding",
199
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_table_with_partial_padding",
200
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_xl_row_with_different_spans",
201
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_xl_row_with_grid_and_span",
202
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_xl_row_without_span",
203
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_xl_row_without_span_insufficient_text",
204
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_compile_xl_row_without_span_no_text",
205
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_decompile_table_with_default_padding",
206
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_decompile_table_with_padding",
207
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_decompile_table_with_partial_padding",
208
+ "src/xl_docx/compiler/tests/test_table.py::TestTableProcessor::test_decompile_table_with_zero_padding",
209
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell",
210
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_complex_attributes",
211
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_merge_to_paragraph",
212
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_override_paragraph_style",
213
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_with_multiple_paragraphs",
214
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_with_nested_spans",
215
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_without_paragraph_style",
216
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_without_tc_style",
217
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_align",
218
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_borders",
219
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_content_tags",
220
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_continue_merge",
221
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_merge",
222
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_span",
223
+ "src/xl_docx/compiler/tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_width",
224
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_different_spans",
225
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_empty_lines_in_text",
226
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_grid_and_span",
227
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_multiple_newlines_in_text",
228
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_newline_and_span",
229
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_newline_in_text",
230
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_style_and_align_conflict",
231
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_style_attribute",
232
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span",
233
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_insufficient_text",
234
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_no_text",
235
+ "src/xl_docx/compiler/tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_with_style",
236
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_complex_table",
237
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_simple_table",
238
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_empty_cells",
239
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_multiple_rows",
240
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_structure",
241
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_alignment",
242
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_border_none",
243
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_default_border",
244
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_grid_column",
245
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_margin",
246
+ "src/xl_docx/compiler/tests/test_table/test_table_basic.py::TestTableBasicProcessor::test_compile_table_with_width",
247
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell",
248
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_complex_attributes",
249
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_align",
250
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_borders",
251
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_content_tags",
252
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_continue_merge",
253
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_merge",
254
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_span",
255
+ "src/xl_docx/compiler/tests/test_table/test_table_cell.py::TestTableCellProcessor::test_compile_table_cell_with_width",
256
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_complex_table",
257
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_simple_table",
258
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_align",
259
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_borders",
260
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_continue_merge",
261
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_merge",
262
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_span",
263
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_width",
264
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_empty_cells",
265
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_multiple_rows",
266
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_alignment",
267
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_borders",
268
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_cant_split",
269
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_grid_column",
270
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_header",
271
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_height",
272
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_margin",
273
+ "src/xl_docx/compiler/tests/test_table/test_table_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_width",
274
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_compile_table_with_default_padding",
275
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_compile_table_with_mixed_style_and_padding",
276
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_compile_table_with_padding",
277
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_compile_table_with_partial_padding",
278
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_decompile_table_with_default_padding",
279
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_decompile_table_with_padding",
280
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_decompile_table_with_partial_padding",
281
+ "src/xl_docx/compiler/tests/test_table/test_table_padding.py::TestTablePaddingProcessor::test_decompile_table_with_zero_padding",
282
+ "src/xl_docx/compiler/tests/test_table/test_table_row.py::TestTableRowProcessor::test_compile_xl_row_with_different_spans",
283
+ "src/xl_docx/compiler/tests/test_table/test_table_row.py::TestTableRowProcessor::test_compile_xl_row_with_grid_and_span",
284
+ "src/xl_docx/compiler/tests/test_table/test_table_row.py::TestTableRowProcessor::test_compile_xl_row_without_span",
285
+ "src/xl_docx/compiler/tests/test_table/test_table_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_insufficient_text",
286
+ "src/xl_docx/compiler/tests/test_table/test_table_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_no_text",
287
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_header",
288
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_header_with_attributes",
289
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_row",
290
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_row_with_cant_split",
291
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_row_with_header",
292
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_row_with_height",
293
+ "src/xl_docx/compiler/tests/test_table/test_table_tr.py::TestTableTrProcessor::test_compile_table_row_with_multiple_attributes",
294
+ "tests/test_base.py::TestBaseProcessor::test_build_attr_str_empty_dict",
295
+ "tests/test_base.py::TestBaseProcessor::test_build_attr_str_none",
296
+ "tests/test_base.py::TestBaseProcessor::test_build_attr_str_valid",
297
+ "tests/test_base.py::TestBaseProcessor::test_build_style_str_empty_dict",
298
+ "tests/test_base.py::TestBaseProcessor::test_build_style_str_none",
299
+ "tests/test_base.py::TestBaseProcessor::test_build_style_str_valid",
300
+ "tests/test_base.py::TestBaseProcessor::test_compile_not_implemented",
301
+ "tests/test_base.py::TestBaseProcessor::test_extract_attrs_empty_string",
302
+ "tests/test_base.py::TestBaseProcessor::test_extract_attrs_missing_attr",
303
+ "tests/test_base.py::TestBaseProcessor::test_extract_attrs_success",
304
+ "tests/test_base.py::TestBaseProcessor::test_extract_no_match",
305
+ "tests/test_base.py::TestBaseProcessor::test_extract_success",
306
+ "tests/test_base.py::TestBaseProcessor::test_parse_style_str_empty",
307
+ "tests/test_base.py::TestBaseProcessor::test_parse_style_str_none",
308
+ "tests/test_base.py::TestBaseProcessor::test_parse_style_str_valid",
309
+ "tests/test_base.py::TestBaseProcessor::test_parse_style_str_with_spaces",
310
+ "tests/test_base.py::TestBaseProcessor::test_process_tag_multiple_matches",
311
+ "tests/test_base.py::TestBaseProcessor::test_process_tag_no_matches",
312
+ "tests/test_base.py::TestBaseProcessor::test_process_tag_simple",
313
+ "tests/test_base.py::TestBaseProcessor::test_retrieve_empty_dict",
314
+ "tests/test_base.py::TestBaseProcessor::test_retrieve_missing_key",
315
+ "tests/test_base.py::TestBaseProcessor::test_retrieve_success",
316
+ "tests/test_compiler_integration.py::test_compiler_processor_order",
317
+ "tests/test_compiler_integration.py::test_compiler_render_with_external_components",
318
+ "tests/test_compiler_integration.py::test_compiler_with_external_components",
319
+ "tests/test_compiler_integration.py::test_compiler_without_external_components",
320
+ "tests/test_component/test_basic.py::test_basic_component",
321
+ "tests/test_component/test_basic.py::test_new",
322
+ "tests/test_component/test_slot.py::test_component_slot",
323
+ "tests/test_component/test_slot.py::test_slot_nested_content",
324
+ "tests/test_component/test_slot.py::test_slot_with_style_only",
325
+ "tests/test_component/test_slot.py::test_slot_without_attributes",
326
+ "tests/test_directive.py::TestDirectiveProcessor::test_compile_full_process",
327
+ "tests/test_directive.py::TestDirectiveProcessor::test_compile_mixed_content",
328
+ "tests/test_directive.py::TestDirectiveProcessor::test_compile_no_directives",
329
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_full_process",
330
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_mixed_content",
331
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_no_jinja_tags",
332
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_v_for_complex_expression",
333
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_v_for_simple",
334
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_v_for_with_attributes",
335
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_v_if_simple",
336
+ "tests/test_directive.py::TestDirectiveProcessor::test_decompile_v_if_with_attributes",
337
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_complex_expression",
338
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_complex_loop",
339
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_missing_closing_tag",
340
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_multiple_elements",
341
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_nested_content",
342
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_no_matching_tags",
343
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_simple",
344
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_for_with_attributes",
345
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_complex_condition",
346
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_missing_closing_tag",
347
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_multiple_attributes",
348
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_multiple_elements",
349
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_nested_content",
350
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_no_matching_tags",
351
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_simple",
352
+ "tests/test_directive.py::TestDirectiveProcessor::test_process_v_if_with_attributes",
353
+ "tests/test_haha.py::TestHaha::test_haha",
354
+ "tests/test_image.py::TestImageProcessor::test_compile_multiple_xl_images",
355
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_basic",
356
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_missing_attributes",
357
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_mixed_with_xl_image",
358
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_self_closing",
359
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_box_image_with_template_variables",
360
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_basic",
361
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_in_span",
362
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_missing_attributes",
363
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_no_match",
364
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_with_content",
365
+ "tests/test_image.py::TestImageProcessor::test_compile_xl_image_with_template_variables",
366
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_empty_content",
367
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_no_style",
368
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_with_special_characters",
369
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_compile_paragraph_with_whitespace",
370
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_compile_simple_paragraph",
371
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_decompile_paragraph_with_special_characters",
372
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_decompile_paragraph_with_whitespace",
373
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_decompile_simple_paragraph",
374
+ "tests/test_paragraph/test_basic.py::TestParagraphBasicProcessor::test_decompile_with_empty_space",
375
+ "tests/test_paragraph/test_block.py::TestParagraphBlockProcessor::test_process_block_with_variable",
376
+ "tests/test_paragraph/test_block.py::TestParagraphBlockProcessor::test_process_block_with_variable_and_style",
377
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_mixed_xl_image_and_xl_box_image_in_spans",
378
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_p",
379
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span",
380
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span_with_style",
381
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_in_span_with_template_variables",
382
+ "tests/test_paragraph/test_box_image.py::TestParagraphBoxImageProcessor::test_compile_xl_box_image_self_closing_in_span",
383
+ "tests/test_paragraph/test_color.py::TestParagraphColorProcessor::test_compile_with_color",
384
+ "tests/test_paragraph/test_color.py::TestParagraphColorProcessor::test_decompile_with_color",
385
+ "tests/test_paragraph/test_image.py::TestParagraphImageProcessor::test_compile_multiple_xl_images_in_spans",
386
+ "tests/test_paragraph/test_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_nested_spans",
387
+ "tests/test_paragraph/test_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span",
388
+ "tests/test_paragraph/test_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span_with_style",
389
+ "tests/test_paragraph/test_image.py::TestParagraphImageProcessor::test_compile_xl_image_in_span_with_template_variables",
390
+ "tests/test_paragraph/test_spacing.py::TestParagraphSpacingProcessor::test_compile_margin",
391
+ "tests/test_paragraph/test_spacing.py::TestParagraphSpacingProcessor::test_compile_paragraph_with_spacing",
392
+ "tests/test_paragraph/test_spacing.py::TestParagraphSpacingProcessor::test_compile_r_with_spacing",
393
+ "tests/test_paragraph/test_spacing.py::TestParagraphSpacingProcessor::test_decompile_margin",
394
+ "tests/test_paragraph/test_spacing.py::TestParagraphSpacingProcessor::test_decompile_r_with_spacing",
395
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_compile_paragraph_with_nested_spans",
396
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_compile_paragraph_with_span",
397
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_no_runs",
398
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_empty_runs",
399
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_multiple_runs",
400
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_nested_spans",
401
+ "tests/test_paragraph/test_span.py::TestParagraphSpanProcessor::test_decompile_paragraph_with_span",
402
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_compile_paragraph_complex_style",
403
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_bold",
404
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_fonts",
405
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_compile_paragraph_with_style",
406
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_complex",
407
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_alignment",
408
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_bold",
409
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_font_size",
410
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_fonts",
411
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_spacing",
412
+ "tests/test_paragraph/test_style.py::TestParagraphStyleProcessor::test_decompile_paragraph_with_underline",
413
+ "tests/test_slot/test_basic.py::test_basic_slot",
414
+ "tests/test_slot/test_basic.py::test_empty_slot_content",
415
+ "tests/test_slot/test_basic.py::test_multiple_slots",
416
+ "tests/test_slot/test_basic.py::test_slot_not_found",
417
+ "tests/test_slot/test_basic.py::test_slot_with_attributes",
418
+ "tests/test_slot/test_basic.py::test_slot_with_nested_content",
419
+ "tests/test_slot/test_basic.py::test_slot_with_style_attribute",
420
+ "tests/test_slot/test_basic.py::test_slot_without_style_attribute",
421
+ "tests/test_slot/test_example.py::test_nested_slots_example",
422
+ "tests/test_slot/test_example.py::test_slot_with_attributes_example",
423
+ "tests/test_slot/test_example.py::test_xl_for_example",
424
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_existing_style",
425
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_invalid_xml",
426
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_multiple_elements",
427
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_no_matching_elements",
428
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_protect_template_tags",
429
+ "tests/test_style.py::TestStyleProcessor::test_apply_styles_simple",
430
+ "tests/test_style.py::TestStyleProcessor::test_compile_complex_css_selectors",
431
+ "tests/test_style.py::TestStyleProcessor::test_compile_full_process",
432
+ "tests/test_style.py::TestStyleProcessor::test_compile_nested_styles",
433
+ "tests/test_style.py::TestStyleProcessor::test_compile_no_styles",
434
+ "tests/test_style.py::TestStyleProcessor::test_compile_style_override",
435
+ "tests/test_style.py::TestStyleProcessor::test_compile_with_xml_declaration",
436
+ "tests/test_style.py::TestStyleProcessor::test_init",
437
+ "tests/test_style.py::TestStyleProcessor::test_parse_styles_empty_style_tag",
438
+ "tests/test_style.py::TestStyleProcessor::test_parse_styles_multiple_rules",
439
+ "tests/test_style.py::TestStyleProcessor::test_parse_styles_no_style_tag",
440
+ "tests/test_style.py::TestStyleProcessor::test_parse_styles_simple",
441
+ "tests/test_style.py::TestStyleProcessor::test_parse_styles_with_newlines",
442
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_basic",
443
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_different_ratios",
444
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_empty_inputs",
445
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_equal_ratios",
446
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_single_column",
447
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_uneven_ratios",
448
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_calculate_grid_from_span_with_pt_unit",
449
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_complex_table",
450
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_simple_table",
451
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_empty_cells",
452
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_multiple_rows",
453
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_span_priority_over_grid",
454
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_structure",
455
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_alignment",
456
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_border_none",
457
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_default_border",
458
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_grid_column",
459
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_margin",
460
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_span_auto_grid",
461
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_span_different_ratios",
462
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_span_grid_calculation",
463
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_span_pt_unit",
464
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_with_width",
465
+ "tests/test_table/test_basic.py::TestTableBasicProcessor::test_compile_table_without_span_no_grid",
466
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell",
467
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_complex_attributes",
468
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_merge_to_paragraph",
469
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_override_paragraph_style",
470
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_with_multiple_paragraphs",
471
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_with_nested_spans",
472
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_without_paragraph_style",
473
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_style_without_tc_style",
474
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_align",
475
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_borders",
476
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_content_tags",
477
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_continue_merge",
478
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_grid_calculation",
479
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_merge",
480
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_span",
481
+ "tests/test_table/test_cell.py::TestTableCellProcessor::test_compile_table_cell_with_width",
482
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_complex_table",
483
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_simple_table",
484
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_align",
485
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_borders",
486
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_continue_merge",
487
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_merge",
488
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_span",
489
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_cell_with_width",
490
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_empty_cells",
491
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_multiple_rows",
492
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_alignment",
493
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_borders",
494
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_cant_split",
495
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_grid_column",
496
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_header",
497
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_height",
498
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_margin",
499
+ "tests/test_table/test_decompile.py::TestTableDecompileProcessor::test_decompile_table_with_width",
500
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_compile_table_with_default_padding",
501
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_compile_table_with_mixed_style_and_padding",
502
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_compile_table_with_padding",
503
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_compile_table_with_partial_padding",
504
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_decompile_table_with_default_padding",
505
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_decompile_table_with_padding",
506
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_decompile_table_with_partial_padding",
507
+ "tests/test_table/test_padding.py::TestTablePaddingProcessor::test_decompile_table_with_zero_padding",
508
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_different_spans",
509
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_empty_lines_in_text",
510
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_grid_and_span",
511
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_multiple_newlines_in_text",
512
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_newline_and_span",
513
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_newline_in_text",
514
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_style_and_align_conflict",
515
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_with_style_attribute",
516
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span",
517
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_insufficient_text",
518
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_no_text",
519
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_compile_xl_row_without_span_with_style",
520
+ "tests/test_table/test_row.py::TestTableRowProcessor::test_new",
521
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_header",
522
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_header_with_attributes",
523
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_row",
524
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_row_with_cant_split",
525
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_row_with_header",
526
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_row_with_height",
527
+ "tests/test_table/test_tr.py::TestTableTrProcessor::test_compile_table_row_with_multiple_attributes"
528
+ ]
@@ -0,0 +1 @@
1
+ []