libxlsxwriter/test/functional/test_set_row.py
John McNamara e2795f601d Add support for pixel sizing of rows and columns.
Added support for pixel sizing in worksheet_set_row() and
worksheet_set_column() via new functions called
worksheet_set_row_pixels() and worksheet_set_column_pixels().
2021-04-15 19:53:01 +01:00

28 lines
682 B
Python

###############################################################################
#
# Tests for libxlsxwriter.
#
# Copyright 2014-2021, John McNamara, jmcnamara@cpan.org
#
import base_test_class
class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
"""
Test file created with libxlsxwriter against a file created by Excel.
"""
def test_set_row01(self):
self.run_exe_test('test_set_row01')
def test_set_row02(self):
self.run_exe_test('test_set_row02', 'set_row01.xlsx')
def test_set_row03(self):
self.run_exe_test('test_set_row03')
def test_set_row04(self):
self.run_exe_test('test_set_row04', 'set_row03.xlsx')